Initial commit
This commit is contained in:
160
sources/com/ubt/jimu/base/entities/AArticle.java
Normal file
160
sources/com/ubt/jimu/base/entities/AArticle.java
Normal file
@@ -0,0 +1,160 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user