207 lines
4.5 KiB
Java
207 lines
4.5 KiB
Java
package com.ubt.jimu.user.feedback;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class FeedbackPostBean implements Serializable {
|
|
private String appSource;
|
|
private String appType;
|
|
private String area;
|
|
private String deviceType;
|
|
private String deviceVersion;
|
|
private String feedbackContent;
|
|
private String feedbackEmail;
|
|
private String feedbackPhone;
|
|
private String feedbackType;
|
|
private Long feedbackUser;
|
|
private List<PostMediaBean> imageList;
|
|
private String language;
|
|
private String logFilePath;
|
|
private List<FeedBackIconBean> mMediaList;
|
|
private int packageId;
|
|
private String requestKey;
|
|
private String requestTime;
|
|
private String serviceVersion;
|
|
private String systemArea;
|
|
private String systemLanguage;
|
|
private volatile boolean mediaUploadFinishFlag = false;
|
|
private volatile boolean logUploadFinisgFlag = false;
|
|
|
|
public String getAppSource() {
|
|
return this.appSource;
|
|
}
|
|
|
|
public String getAppType() {
|
|
return this.appType;
|
|
}
|
|
|
|
public String getArea() {
|
|
return this.area;
|
|
}
|
|
|
|
public String getDeviceType() {
|
|
return this.deviceType;
|
|
}
|
|
|
|
public String getDeviceVersion() {
|
|
return this.deviceVersion;
|
|
}
|
|
|
|
public String getFeedbackContent() {
|
|
return this.feedbackContent;
|
|
}
|
|
|
|
public String getFeedbackEmail() {
|
|
return this.feedbackEmail;
|
|
}
|
|
|
|
public String getFeedbackPhone() {
|
|
return this.feedbackPhone;
|
|
}
|
|
|
|
public String getFeedbackType() {
|
|
return this.feedbackType;
|
|
}
|
|
|
|
public Long getFeedbackUser() {
|
|
return this.feedbackUser;
|
|
}
|
|
|
|
public List<PostMediaBean> getImageList() {
|
|
return this.imageList;
|
|
}
|
|
|
|
public String getLanguage() {
|
|
return this.language;
|
|
}
|
|
|
|
public String getLogFilePath() {
|
|
return this.logFilePath;
|
|
}
|
|
|
|
public int getPackageId() {
|
|
return this.packageId;
|
|
}
|
|
|
|
public String getRequestKey() {
|
|
return this.requestKey;
|
|
}
|
|
|
|
public String getRequestTime() {
|
|
return this.requestTime;
|
|
}
|
|
|
|
public String getServiceVersion() {
|
|
return this.serviceVersion;
|
|
}
|
|
|
|
public String getSystemArea() {
|
|
return this.systemArea;
|
|
}
|
|
|
|
public String getSystemLanguage() {
|
|
return this.systemLanguage;
|
|
}
|
|
|
|
public List<FeedBackIconBean> getmMediaList() {
|
|
return this.mMediaList;
|
|
}
|
|
|
|
public boolean isLogUploadFinisgFlag() {
|
|
return this.logUploadFinisgFlag;
|
|
}
|
|
|
|
public boolean isMediaUploadFinishFlag() {
|
|
return this.mediaUploadFinishFlag;
|
|
}
|
|
|
|
public void setAppSource(String str) {
|
|
this.appSource = str;
|
|
}
|
|
|
|
public void setAppType(String str) {
|
|
this.appType = str;
|
|
}
|
|
|
|
public void setArea(String str) {
|
|
this.area = str;
|
|
}
|
|
|
|
public void setDeviceType(String str) {
|
|
this.deviceType = str;
|
|
}
|
|
|
|
public void setDeviceVersion(String str) {
|
|
this.deviceVersion = str;
|
|
}
|
|
|
|
public void setFeedbackContent(String str) {
|
|
this.feedbackContent = str;
|
|
}
|
|
|
|
public void setFeedbackEmail(String str) {
|
|
this.feedbackEmail = str;
|
|
}
|
|
|
|
public void setFeedbackPhone(String str) {
|
|
this.feedbackPhone = str;
|
|
}
|
|
|
|
public void setFeedbackType(String str) {
|
|
this.feedbackType = str;
|
|
}
|
|
|
|
public void setFeedbackUser(Long l) {
|
|
this.feedbackUser = l;
|
|
}
|
|
|
|
public void setImageList(List<PostMediaBean> list) {
|
|
this.imageList = list;
|
|
}
|
|
|
|
public void setLanguage(String str) {
|
|
this.language = str;
|
|
}
|
|
|
|
public void setLogFilePath(String str) {
|
|
this.logFilePath = str;
|
|
}
|
|
|
|
public void setLogUploadFinisgFlag(boolean z) {
|
|
this.logUploadFinisgFlag = z;
|
|
}
|
|
|
|
public void setMediaUploadFinishFlag(boolean z) {
|
|
this.mediaUploadFinishFlag = z;
|
|
}
|
|
|
|
public void setPackageId(int i) {
|
|
this.packageId = i;
|
|
}
|
|
|
|
public void setRequestKey(String str) {
|
|
this.requestKey = str;
|
|
}
|
|
|
|
public void setRequestTime(String str) {
|
|
this.requestTime = str;
|
|
}
|
|
|
|
public void setServiceVersion(String str) {
|
|
this.serviceVersion = str;
|
|
}
|
|
|
|
public void setSystemArea(String str) {
|
|
this.systemArea = str;
|
|
}
|
|
|
|
public void setSystemLanguage(String str) {
|
|
this.systemLanguage = str;
|
|
}
|
|
|
|
public void setmMediaList(List<FeedBackIconBean> list) {
|
|
this.mMediaList = list;
|
|
}
|
|
}
|