jimu-decompiled/sources/com/ubt/jimu/base/entities/SettingitemBean.java
2025-05-13 19:24:51 +02:00

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;
}
}