146 lines
3.0 KiB
Java
146 lines
3.0 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class GuessEnjoyEntities extends LoveEntities implements Cloneable {
|
|
private int current;
|
|
private int pages;
|
|
private List<RecordsBean> records;
|
|
private int size;
|
|
private int total;
|
|
|
|
public static class RecordsBean {
|
|
private String content;
|
|
private int createUser;
|
|
private int id;
|
|
private String nickName;
|
|
private String postCoverName;
|
|
private String postCoverUrl;
|
|
private int postIcon;
|
|
private String tags;
|
|
private String title;
|
|
private String userImage;
|
|
|
|
public String getContent() {
|
|
return this.content;
|
|
}
|
|
|
|
public int getCreateUser() {
|
|
return this.createUser;
|
|
}
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public String getNickName() {
|
|
return this.nickName;
|
|
}
|
|
|
|
public String getPostCoverName() {
|
|
return this.postCoverName;
|
|
}
|
|
|
|
public String getPostCoverUrl() {
|
|
return this.postCoverUrl;
|
|
}
|
|
|
|
public int getPostIcon() {
|
|
return this.postIcon;
|
|
}
|
|
|
|
public String getTags() {
|
|
return this.tags;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return this.title;
|
|
}
|
|
|
|
public String getUserImage() {
|
|
return this.userImage;
|
|
}
|
|
|
|
public void setContent(String str) {
|
|
this.content = str;
|
|
}
|
|
|
|
public void setCreateUser(int i) {
|
|
this.createUser = i;
|
|
}
|
|
|
|
public void setId(int i) {
|
|
this.id = 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(int i) {
|
|
this.postIcon = 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;
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|