141 lines
2.6 KiB
Java
141 lines
2.6 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class JoinArticle {
|
|
private int activityId;
|
|
private int browseNum;
|
|
private int collectNum;
|
|
private int commentNum;
|
|
private String createTime;
|
|
private String description;
|
|
private String nickName;
|
|
private int praiseNum;
|
|
private int shareNum;
|
|
private int status;
|
|
private String title;
|
|
private String userImage;
|
|
private String worksCover;
|
|
private int worksIcon;
|
|
private int worksId;
|
|
|
|
public int getActivityId() {
|
|
return this.activityId;
|
|
}
|
|
|
|
public int getBrowseNum() {
|
|
return this.browseNum;
|
|
}
|
|
|
|
public int getCollectNum() {
|
|
return this.collectNum;
|
|
}
|
|
|
|
public int getCommentNum() {
|
|
return this.commentNum;
|
|
}
|
|
|
|
public String getCreateTime() {
|
|
return this.createTime;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return this.description;
|
|
}
|
|
|
|
public String getNickName() {
|
|
return this.nickName;
|
|
}
|
|
|
|
public int getPraiseNum() {
|
|
return this.praiseNum;
|
|
}
|
|
|
|
public int getShareNum() {
|
|
return this.shareNum;
|
|
}
|
|
|
|
public int getStatus() {
|
|
return this.status;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return this.title;
|
|
}
|
|
|
|
public String getUserImage() {
|
|
return this.userImage;
|
|
}
|
|
|
|
public String getWorksCover() {
|
|
return this.worksCover;
|
|
}
|
|
|
|
public int getWorksIcon() {
|
|
return this.worksIcon;
|
|
}
|
|
|
|
public int getWorksId() {
|
|
return this.worksId;
|
|
}
|
|
|
|
public void setActivityId(int i) {
|
|
this.activityId = i;
|
|
}
|
|
|
|
public void setBrowseNum(int i) {
|
|
this.browseNum = i;
|
|
}
|
|
|
|
public void setCollectNum(int i) {
|
|
this.collectNum = i;
|
|
}
|
|
|
|
public void setCommentNum(int i) {
|
|
this.commentNum = i;
|
|
}
|
|
|
|
public void setCreateTime(String str) {
|
|
this.createTime = str;
|
|
}
|
|
|
|
public void setDescription(String str) {
|
|
this.description = 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 setStatus(int i) {
|
|
this.status = i;
|
|
}
|
|
|
|
public void setTitle(String str) {
|
|
this.title = str;
|
|
}
|
|
|
|
public void setUserImage(String str) {
|
|
this.userImage = str;
|
|
}
|
|
|
|
public void setWorksCover(String str) {
|
|
this.worksCover = str;
|
|
}
|
|
|
|
public void setWorksIcon(int i) {
|
|
this.worksIcon = i;
|
|
}
|
|
|
|
public void setWorksId(int i) {
|
|
this.worksId = i;
|
|
}
|
|
}
|