33 lines
575 B
Java
33 lines
575 B
Java
package com.ubt.jimu.base.entities;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class SettingitemBean {
|
|
private boolean choose;
|
|
private int index;
|
|
private String name;
|
|
|
|
public int getIndex() {
|
|
return this.index;
|
|
}
|
|
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public boolean isChoose() {
|
|
return this.choose;
|
|
}
|
|
|
|
public void setChoose(boolean z) {
|
|
this.choose = z;
|
|
}
|
|
|
|
public void setIndex(int i) {
|
|
this.index = i;
|
|
}
|
|
|
|
public void setName(String str) {
|
|
this.name = str;
|
|
}
|
|
}
|