package com.ubt.jimu.base.entities; import java.util.List; /* loaded from: classes.dex */ public class SearchContentBean { private int current; private int pages; private List records; private int size; private int total; public static class RecordsBean { private int answerNum; private String content; private long createTime; private int createUser; private String description; private int id; private int isAccepted; private int isDeleted; private String nickName; private String postCoverName; private String postCoverUrl; private String postIcon; private int product; private int score; private int status; private String tags; private String title; private int userId; private String userImage; public int getAnswerNum() { return this.answerNum; } public String getContent() { return this.content; } public long getCreateTime() { return this.createTime; } public int getCreateUser() { return this.createUser; } public String getDescription() { return this.description; } public int getId() { return this.id; } public int getIsAccepted() { return this.isAccepted; } public int getIsDeleted() { return this.isDeleted; } public String getNickName() { return this.nickName; } public String getPostCoverName() { return this.postCoverName; } public String getPostCoverUrl() { return this.postCoverUrl; } public String getPostIcon() { return this.postIcon; } public int getProduct() { return this.product; } public int getScore() { return this.score; } public int getStatus() { return this.status; } public String getTags() { return this.tags; } public String getTitle() { return this.title; } public int getUserId() { return this.userId; } public String getUserImage() { return this.userImage; } public void setAnswerNum(int i) { this.answerNum = i; } public void setContent(String str) { this.content = str; } public void setCreateTime(long j) { this.createTime = j; } public void setCreateUser(int i) { this.createUser = i; } public void setDescription(String str) { this.description = str; } public void setId(int i) { this.id = i; } public void setIsAccepted(int i) { this.isAccepted = i; } public void setIsDeleted(int i) { this.isDeleted = i; } public void setNickName(String str) { this.nickName = str; } public void setPostCoverName(String str) { this.postCoverName = str; } public void setPostCoverUrl(String str) { this.postCoverUrl = str; } public void setPostIcon(String str) { this.postIcon = str; } public void setProduct(int i) { this.product = i; } public void setScore(int i) { this.score = 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 setUserId(int i) { this.userId = i; } public void setUserImage(String str) { this.userImage = str; } } public int getCurrent() { return this.current; } public int getPages() { return this.pages; } public List getRecords() { return this.records; } public int getSize() { return this.size; } public int getTotal() { return this.total; } public void setCurrent(int i) { this.current = i; } public void setPages(int i) { this.pages = i; } public void setRecords(List list) { this.records = list; } public void setSize(int i) { this.size = i; } public void setTotal(int i) { this.total = i; } }