389 lines
8.6 KiB
Java
389 lines
8.6 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class HotBean {
|
|
private int current;
|
|
private int pages;
|
|
private List<RecordsBean> records;
|
|
private int size;
|
|
private int total;
|
|
private String type;
|
|
|
|
public static class RecordsBean {
|
|
private int activityId;
|
|
private int browseNum;
|
|
private int collectNum;
|
|
private int commentNum;
|
|
private int complainNum;
|
|
private String content;
|
|
private String countryCode;
|
|
private String createTime;
|
|
private int createUser;
|
|
private int id;
|
|
private List<ImgLsitBean> imgLsit;
|
|
private int isChoice;
|
|
private int isDeleted;
|
|
private int praiseNum;
|
|
private int product;
|
|
private String resourceUrl;
|
|
private int shareNum;
|
|
private int status;
|
|
private String tags;
|
|
private String title;
|
|
private UserBaseInfoBean userBaseInfo;
|
|
|
|
public static class ImgLsitBean {
|
|
private String createTime;
|
|
private String description;
|
|
private String fileUrl;
|
|
private int id;
|
|
private int isDeleted;
|
|
private int postId;
|
|
|
|
@SerializedName("type")
|
|
private String typeX;
|
|
|
|
public String getCreateTime() {
|
|
return this.createTime;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return this.description;
|
|
}
|
|
|
|
public String getFileUrl() {
|
|
return this.fileUrl;
|
|
}
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public int getIsDeleted() {
|
|
return this.isDeleted;
|
|
}
|
|
|
|
public int getPostId() {
|
|
return this.postId;
|
|
}
|
|
|
|
public String getTypeX() {
|
|
return this.typeX;
|
|
}
|
|
|
|
public void setCreateTime(String str) {
|
|
this.createTime = str;
|
|
}
|
|
|
|
public void setDescription(String str) {
|
|
this.description = 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 setPostId(int i) {
|
|
this.postId = i;
|
|
}
|
|
|
|
public void setTypeX(String str) {
|
|
this.typeX = str;
|
|
}
|
|
}
|
|
|
|
public static class UserBaseInfoBean {
|
|
private String descKey;
|
|
private int level;
|
|
private String nickName;
|
|
private String titleKey;
|
|
private int userId;
|
|
private String userImage;
|
|
private String userName;
|
|
|
|
public String getDescKey() {
|
|
return this.descKey;
|
|
}
|
|
|
|
public int getLevel() {
|
|
return this.level;
|
|
}
|
|
|
|
public String getNickName() {
|
|
return this.nickName;
|
|
}
|
|
|
|
public String getTitleKey() {
|
|
return this.titleKey;
|
|
}
|
|
|
|
public int getUserId() {
|
|
return this.userId;
|
|
}
|
|
|
|
public String getUserImage() {
|
|
return this.userImage;
|
|
}
|
|
|
|
public String getUserName() {
|
|
return this.userName;
|
|
}
|
|
|
|
public void setDescKey(String str) {
|
|
this.descKey = str;
|
|
}
|
|
|
|
public void setLevel(int i) {
|
|
this.level = i;
|
|
}
|
|
|
|
public void setNickName(String str) {
|
|
this.nickName = str;
|
|
}
|
|
|
|
public void setTitleKey(String str) {
|
|
this.titleKey = str;
|
|
}
|
|
|
|
public void setUserId(int i) {
|
|
this.userId = i;
|
|
}
|
|
|
|
public void setUserImage(String str) {
|
|
this.userImage = str;
|
|
}
|
|
|
|
public void setUserName(String str) {
|
|
this.userName = str;
|
|
}
|
|
}
|
|
|
|
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 int getComplainNum() {
|
|
return this.complainNum;
|
|
}
|
|
|
|
public String getContent() {
|
|
return this.content;
|
|
}
|
|
|
|
public String getCountryCode() {
|
|
return this.countryCode;
|
|
}
|
|
|
|
public String getCreateTime() {
|
|
return this.createTime;
|
|
}
|
|
|
|
public int getCreateUser() {
|
|
return this.createUser;
|
|
}
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public List<ImgLsitBean> getImgLsit() {
|
|
return this.imgLsit;
|
|
}
|
|
|
|
public int getIsChoice() {
|
|
return this.isChoice;
|
|
}
|
|
|
|
public int getIsDeleted() {
|
|
return this.isDeleted;
|
|
}
|
|
|
|
public int getPraiseNum() {
|
|
return this.praiseNum;
|
|
}
|
|
|
|
public int getProduct() {
|
|
return this.product;
|
|
}
|
|
|
|
public String getResourceUrl() {
|
|
return this.resourceUrl;
|
|
}
|
|
|
|
public int getShareNum() {
|
|
return this.shareNum;
|
|
}
|
|
|
|
public int getStatus() {
|
|
return this.status;
|
|
}
|
|
|
|
public String getTags() {
|
|
return this.tags;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return this.title;
|
|
}
|
|
|
|
public UserBaseInfoBean getUserBaseInfo() {
|
|
return this.userBaseInfo;
|
|
}
|
|
|
|
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 setComplainNum(int i) {
|
|
this.complainNum = i;
|
|
}
|
|
|
|
public void setContent(String str) {
|
|
this.content = str;
|
|
}
|
|
|
|
public void setCountryCode(String str) {
|
|
this.countryCode = str;
|
|
}
|
|
|
|
public void setCreateTime(String str) {
|
|
this.createTime = str;
|
|
}
|
|
|
|
public void setCreateUser(int i) {
|
|
this.createUser = i;
|
|
}
|
|
|
|
public void setId(int i) {
|
|
this.id = i;
|
|
}
|
|
|
|
public void setImgLsit(List<ImgLsitBean> list) {
|
|
this.imgLsit = list;
|
|
}
|
|
|
|
public void setIsChoice(int i) {
|
|
this.isChoice = i;
|
|
}
|
|
|
|
public void setIsDeleted(int i) {
|
|
this.isDeleted = i;
|
|
}
|
|
|
|
public void setPraiseNum(int i) {
|
|
this.praiseNum = i;
|
|
}
|
|
|
|
public void setProduct(int i) {
|
|
this.product = i;
|
|
}
|
|
|
|
public void setResourceUrl(String str) {
|
|
this.resourceUrl = str;
|
|
}
|
|
|
|
public void setShareNum(int i) {
|
|
this.shareNum = 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;
|
|
}
|
|
|
|
public void setUserBaseInfo(UserBaseInfoBean userBaseInfoBean) {
|
|
this.userBaseInfo = userBaseInfoBean;
|
|
}
|
|
}
|
|
|
|
public int getCurrent() {
|
|
return this.current;
|
|
}
|
|
|
|
public int getPages() {
|
|
return this.pages;
|
|
}
|
|
|
|
public List<RecordsBean> getRecords() {
|
|
return this.records;
|
|
}
|
|
|
|
public int getSize() {
|
|
return this.size;
|
|
}
|
|
|
|
public int getTotal() {
|
|
return this.total;
|
|
}
|
|
|
|
public String getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public void setCurrent(int i) {
|
|
this.current = i;
|
|
}
|
|
|
|
public void setPages(int i) {
|
|
this.pages = i;
|
|
}
|
|
|
|
public void setRecords(List<RecordsBean> list) {
|
|
this.records = list;
|
|
}
|
|
|
|
public void setSize(int i) {
|
|
this.size = i;
|
|
}
|
|
|
|
public void setTotal(int i) {
|
|
this.total = i;
|
|
}
|
|
|
|
public void setType(String str) {
|
|
this.type = str;
|
|
}
|
|
}
|