update
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user