175 lines
3.6 KiB
Java
175 lines
3.6 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import com.ubt.jimu.JimuApplication;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class UploadParameterBean {
|
|
private String activityId;
|
|
private String content;
|
|
private String createUser;
|
|
private String postCoverName;
|
|
private String postCoverUrl;
|
|
private int postIcon;
|
|
private int status;
|
|
private String tags;
|
|
private String title;
|
|
private String countryCode = JimuApplication.l().d();
|
|
private long createTime = System.currentTimeMillis();
|
|
private List<FilesBean> files = new ArrayList();
|
|
|
|
public static class FilesBean {
|
|
private int order;
|
|
private int type;
|
|
private String description = "";
|
|
private String fileName = "";
|
|
private String fileUrl = "";
|
|
private String thumbnail = "";
|
|
|
|
public String getDescription() {
|
|
return this.description;
|
|
}
|
|
|
|
public String getFileName() {
|
|
return this.fileName;
|
|
}
|
|
|
|
public String getFileUrl() {
|
|
return this.fileUrl;
|
|
}
|
|
|
|
public int getOrder() {
|
|
return this.order;
|
|
}
|
|
|
|
public String getThumbnail() {
|
|
return this.thumbnail;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public void setDescription(String str) {
|
|
this.description = str;
|
|
}
|
|
|
|
public void setFileName(String str) {
|
|
this.fileName = str;
|
|
}
|
|
|
|
public void setFileUrl(String str) {
|
|
this.fileUrl = str;
|
|
}
|
|
|
|
public void setOrder(int i) {
|
|
this.order = i;
|
|
}
|
|
|
|
public void setThumbnail(String str) {
|
|
this.thumbnail = str;
|
|
}
|
|
|
|
public void setType(int i) {
|
|
this.type = i;
|
|
}
|
|
}
|
|
|
|
public String getActivityId() {
|
|
return this.activityId;
|
|
}
|
|
|
|
public String getContent() {
|
|
return this.content;
|
|
}
|
|
|
|
public String getCountryCode() {
|
|
return this.countryCode;
|
|
}
|
|
|
|
public long getCreateTime() {
|
|
return this.createTime;
|
|
}
|
|
|
|
public String getCreateUser() {
|
|
return this.createUser;
|
|
}
|
|
|
|
public List<FilesBean> getFiles() {
|
|
return this.files;
|
|
}
|
|
|
|
public String getPostCoverName() {
|
|
return this.postCoverName;
|
|
}
|
|
|
|
public String getPostCoverUrl() {
|
|
return this.postCoverUrl;
|
|
}
|
|
|
|
public int getPostIcon() {
|
|
return this.postIcon;
|
|
}
|
|
|
|
public int getStatus() {
|
|
return this.status;
|
|
}
|
|
|
|
public String getTags() {
|
|
return this.tags;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return this.title;
|
|
}
|
|
|
|
public void setActivityId(String str) {
|
|
this.activityId = str;
|
|
}
|
|
|
|
public void setContent(String str) {
|
|
this.content = str;
|
|
}
|
|
|
|
public void setCountryCode(String str) {
|
|
this.countryCode = str;
|
|
}
|
|
|
|
public void setCreateTime(long j) {
|
|
this.createTime = j;
|
|
}
|
|
|
|
public void setCreateUser(String str) {
|
|
this.createUser = str;
|
|
}
|
|
|
|
public void setFiles(List<FilesBean> list) {
|
|
this.files = list;
|
|
}
|
|
|
|
public void setPostCoverName(String str) {
|
|
this.postCoverName = str;
|
|
}
|
|
|
|
public void setPostCoverUrl(String str) {
|
|
this.postCoverUrl = str;
|
|
}
|
|
|
|
public void setPostIcon(int i) {
|
|
this.postIcon = i;
|
|
}
|
|
|
|
public void setStatus(int i) {
|
|
this.status = i;
|
|
}
|
|
|
|
public void setTags(String str) {
|
|
this.tags = str;
|
|
}
|
|
|
|
public void setTitle(String str) {
|
|
this.title = str;
|
|
}
|
|
}
|