146 lines
2.8 KiB
Java
146 lines
2.8 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class CommentBean {
|
|
private int current;
|
|
private int pages;
|
|
private List<RecordsBean> records;
|
|
private int size;
|
|
private int total;
|
|
|
|
public static class RecordsBean {
|
|
private String author;
|
|
private String content;
|
|
private long createTime;
|
|
private int id;
|
|
private int postId;
|
|
private int replyTo;
|
|
private String replyUser;
|
|
private int type;
|
|
private int userId;
|
|
private String userImage;
|
|
|
|
public String getAuthor() {
|
|
return this.author;
|
|
}
|
|
|
|
public String getContent() {
|
|
return this.content;
|
|
}
|
|
|
|
public long getCreateTime() {
|
|
return this.createTime;
|
|
}
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public int getPostId() {
|
|
return this.postId;
|
|
}
|
|
|
|
public int getReplyTo() {
|
|
return this.replyTo;
|
|
}
|
|
|
|
public String getReplyUser() {
|
|
return this.replyUser;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public int getUserId() {
|
|
return this.userId;
|
|
}
|
|
|
|
public String getUserImage() {
|
|
return this.userImage;
|
|
}
|
|
|
|
public void setAuthor(String str) {
|
|
this.author = str;
|
|
}
|
|
|
|
public void setContent(String str) {
|
|
this.content = str;
|
|
}
|
|
|
|
public void setCreateTime(long j) {
|
|
this.createTime = j;
|
|
}
|
|
|
|
public void setId(int i) {
|
|
this.id = i;
|
|
}
|
|
|
|
public void setPostId(int i) {
|
|
this.postId = i;
|
|
}
|
|
|
|
public void setReplyTo(int i) {
|
|
this.replyTo = i;
|
|
}
|
|
|
|
public void setReplyUser(String str) {
|
|
this.replyUser = str;
|
|
}
|
|
|
|
public void setType(int i) {
|
|
this.type = i;
|
|
}
|
|
|
|
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<RecordsBean> 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<RecordsBean> list) {
|
|
this.records = list;
|
|
}
|
|
|
|
public void setSize(int i) {
|
|
this.size = i;
|
|
}
|
|
|
|
public void setTotal(int i) {
|
|
this.total = i;
|
|
}
|
|
}
|