jimu-decompiled/sources/com/ubt/jimu/base/entities/PublishDetailBean.java
2025-05-13 19:24:51 +02:00

320 lines
6.2 KiB
Java

package com.ubt.jimu.base.entities;
import java.util.List;
/* loaded from: classes.dex */
public class PublishDetailBean {
private int browseNum;
private int collectNum;
private int commentNum;
private List<ComponentsBean> components;
private int createUser;
private List<FilesBean> files;
private int hasCollected;
private int hasPraised;
private int id;
private int isSubscribed;
private int level;
private String nickName;
private int praiseNum;
private String resourceUrl;
private int shareNum;
private String tags;
private String title;
private String userImage;
public static class ComponentsBean {
private int componentId;
private int id;
private String image;
private String name;
private int num;
private int ownNum;
public int getComponentId() {
return this.componentId;
}
public int getId() {
return this.id;
}
public String getImage() {
return this.image;
}
public String getName() {
return this.name;
}
public int getNum() {
return this.num;
}
public int getOwnNum() {
return this.ownNum;
}
public void setComponentId(int i) {
this.componentId = i;
}
public void setId(int i) {
this.id = i;
}
public void setImage(String str) {
this.image = str;
}
public void setName(String str) {
this.name = str;
}
public void setNum(int i) {
this.num = i;
}
public void setOwnNum(int i) {
this.ownNum = i;
}
}
public static class FilesBean {
private String createTime;
private String description;
private String fileName;
private String fileUrl;
private int id;
private int isDeleted;
private int order;
private int postId;
private int type;
private int userId;
public String getCreateTime() {
return this.createTime;
}
public String getDescription() {
return this.description;
}
public String getFileName() {
return this.fileName;
}
public String getFileUrl() {
return this.fileUrl;
}
public int getId() {
return this.id;
}
public int getIsDeleted() {
return this.isDeleted;
}
public int getOrder() {
return this.order;
}
public int getPostId() {
return this.postId;
}
public int getType() {
return this.type;
}
public int getUserId() {
return this.userId;
}
public void setCreateTime(String str) {
this.createTime = str;
}
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 setId(int i) {
this.id = i;
}
public void setIsDeleted(int i) {
this.isDeleted = i;
}
public void setOrder(int i) {
this.order = i;
}
public void setPostId(int i) {
this.postId = i;
}
public void setType(int i) {
this.type = i;
}
public void setUserId(int i) {
this.userId = i;
}
}
public int getBrowseNum() {
return this.browseNum;
}
public int getCollectNum() {
return this.collectNum;
}
public int getCommentNum() {
return this.commentNum;
}
public List<ComponentsBean> getComponents() {
return this.components;
}
public int getCreateUser() {
return this.createUser;
}
public List<FilesBean> getFiles() {
return this.files;
}
public int getHasCollected() {
return this.hasCollected;
}
public int getHasPraised() {
return this.hasPraised;
}
public int getId() {
return this.id;
}
public int getIsSubscribed() {
return this.isSubscribed;
}
public int getLevel() {
return this.level;
}
public String getNickName() {
return this.nickName;
}
public int getPraiseNum() {
return this.praiseNum;
}
public String getResourceUrl() {
return this.resourceUrl;
}
public int getShareNum() {
return this.shareNum;
}
public String getTags() {
return this.tags;
}
public String getTitle() {
return this.title;
}
public String getUserImage() {
return this.userImage;
}
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 setComponents(List<ComponentsBean> list) {
this.components = list;
}
public void setCreateUser(int i) {
this.createUser = i;
}
public void setFiles(List<FilesBean> list) {
this.files = list;
}
public void setHasCollected(int i) {
this.hasCollected = i;
}
public void setHasPraised(int i) {
this.hasPraised = i;
}
public void setId(int i) {
this.id = i;
}
public void setIsSubscribed(int i) {
this.isSubscribed = i;
}
public void setLevel(int i) {
this.level = i;
}
public void setNickName(String str) {
this.nickName = str;
}
public void setPraiseNum(int i) {
this.praiseNum = i;
}
public void setResourceUrl(String str) {
this.resourceUrl = str;
}
public void setShareNum(int i) {
this.shareNum = i;
}
public void setTags(String str) {
this.tags = str;
}
public void setTitle(String str) {
this.title = str;
}
public void setUserImage(String str) {
this.userImage = str;
}
}