51 lines
993 B
Java
51 lines
993 B
Java
package com.ubt.jimu.user.feedback;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class FeedBackIconBean implements Serializable {
|
|
private boolean isAddFlag;
|
|
private String mName;
|
|
private String mPath;
|
|
private int mType;
|
|
|
|
public FeedBackIconBean(boolean z, String str, int i, String str2) {
|
|
this.isAddFlag = z;
|
|
this.mPath = str;
|
|
this.mType = i;
|
|
this.mName = str2;
|
|
}
|
|
|
|
public String getPath() {
|
|
return this.mPath;
|
|
}
|
|
|
|
public String getmName() {
|
|
return this.mName;
|
|
}
|
|
|
|
public int getmType() {
|
|
return this.mType;
|
|
}
|
|
|
|
public boolean isAddFlag() {
|
|
return this.isAddFlag;
|
|
}
|
|
|
|
public void setAddFlag(boolean z) {
|
|
this.isAddFlag = z;
|
|
}
|
|
|
|
public void setPath(String str) {
|
|
this.mPath = str;
|
|
}
|
|
|
|
public void setmName(String str) {
|
|
this.mName = str;
|
|
}
|
|
|
|
public void setmType(int i) {
|
|
this.mType = i;
|
|
}
|
|
}
|