This commit is contained in:
2022-09-21 18:31:07 +08:00
parent bdaa51dbb6
commit e29ecd2845
202 changed files with 11730 additions and 619 deletions

View File

@@ -15,16 +15,19 @@ public class PropBean extends BaseBean {
private int iconId;
private String path;
private int descId;
private int beanType;
public PropBean(int iconId, String path) {
public PropBean(int iconId, String path,int beanType) {
this.iconId = iconId;
this.path = path;
this.beanType=beanType;
}
public PropBean(int iconId, String path, int descId) {
public PropBean(int iconId, String path, int descId,int beanType) {
this.iconId = iconId;
this.path = path;
this.descId = descId;
this.beanType=beanType;
}
public int getIconId() {
@@ -69,7 +72,7 @@ public class PropBean extends BaseBean {
@Override
public int getBeanType() {
return FaceParam.FACE_BIG_HEAD;
return beanType;
}
@NonNull
@@ -77,4 +80,6 @@ public class PropBean extends BaseBean {
public ModelAttributeData getModelAttributeData() {
return null;
}
}