161 lines
3.1 KiB
Java
161 lines
3.1 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class AArticle {
|
|
private int browseNum;
|
|
private int commentNum;
|
|
private String compressImagePath;
|
|
private long fileCreatedTime;
|
|
private String filePath;
|
|
private List<ArticleFileInfo> files;
|
|
private int isReleased;
|
|
private long modelId;
|
|
private String modelName;
|
|
private String nickName;
|
|
private int praiseNum;
|
|
private int shareNum;
|
|
private String userImage;
|
|
private String userName;
|
|
private String workDescription;
|
|
private int workId;
|
|
private String workName;
|
|
|
|
public int getBrowseNum() {
|
|
return this.browseNum;
|
|
}
|
|
|
|
public int getCommentNum() {
|
|
return this.commentNum;
|
|
}
|
|
|
|
public String getCompressImagePath() {
|
|
return this.compressImagePath;
|
|
}
|
|
|
|
public long getFileCreatedTime() {
|
|
return this.fileCreatedTime;
|
|
}
|
|
|
|
public String getFilePath() {
|
|
return this.filePath;
|
|
}
|
|
|
|
public List<ArticleFileInfo> getFiles() {
|
|
return this.files;
|
|
}
|
|
|
|
public int getIsReleased() {
|
|
return this.isReleased;
|
|
}
|
|
|
|
public long getModelId() {
|
|
return this.modelId;
|
|
}
|
|
|
|
public String getModelName() {
|
|
return this.modelName;
|
|
}
|
|
|
|
public String getNickName() {
|
|
return this.nickName;
|
|
}
|
|
|
|
public int getPraiseNum() {
|
|
return this.praiseNum;
|
|
}
|
|
|
|
public int getShareNum() {
|
|
return this.shareNum;
|
|
}
|
|
|
|
public String getUserImage() {
|
|
return this.userImage;
|
|
}
|
|
|
|
public String getUserName() {
|
|
return this.userName;
|
|
}
|
|
|
|
public String getWorkDescription() {
|
|
return this.workDescription;
|
|
}
|
|
|
|
public int getWorkId() {
|
|
return this.workId;
|
|
}
|
|
|
|
public String getWorkName() {
|
|
return this.workName;
|
|
}
|
|
|
|
public void setBrowseNum(int i) {
|
|
this.browseNum = i;
|
|
}
|
|
|
|
public void setCommentNum(int i) {
|
|
this.commentNum = i;
|
|
}
|
|
|
|
public void setCompressImagePath(String str) {
|
|
this.compressImagePath = str;
|
|
}
|
|
|
|
public void setFileCreatedTime(long j) {
|
|
this.fileCreatedTime = j;
|
|
}
|
|
|
|
public void setFilePath(String str) {
|
|
this.filePath = str;
|
|
}
|
|
|
|
public void setFiles(List<ArticleFileInfo> list) {
|
|
this.files = list;
|
|
}
|
|
|
|
public void setIsReleased(int i) {
|
|
this.isReleased = i;
|
|
}
|
|
|
|
public void setModelId(long j) {
|
|
this.modelId = j;
|
|
}
|
|
|
|
public void setModelName(String str) {
|
|
this.modelName = str;
|
|
}
|
|
|
|
public void setNickName(String str) {
|
|
this.nickName = str;
|
|
}
|
|
|
|
public void setPraiseNum(int i) {
|
|
this.praiseNum = i;
|
|
}
|
|
|
|
public void setShareNum(int i) {
|
|
this.shareNum = i;
|
|
}
|
|
|
|
public void setUserImage(String str) {
|
|
this.userImage = str;
|
|
}
|
|
|
|
public void setUserName(String str) {
|
|
this.userName = str;
|
|
}
|
|
|
|
public void setWorkDescription(String str) {
|
|
this.workDescription = str;
|
|
}
|
|
|
|
public void setWorkId(int i) {
|
|
this.workId = i;
|
|
}
|
|
|
|
public void setWorkName(String str) {
|
|
this.workName = str;
|
|
}
|
|
}
|