158 lines
3.1 KiB
Java
158 lines
3.1 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class PraiseBean {
|
|
private int current;
|
|
private int pages;
|
|
List<Praise> records;
|
|
private int size;
|
|
private int total;
|
|
|
|
public class Praise {
|
|
private long createUser;
|
|
private String iconType;
|
|
private int id;
|
|
private int level;
|
|
private String nickName;
|
|
private String postCoverUrl;
|
|
private String postIconUrl;
|
|
private String tags;
|
|
private String title;
|
|
private String userImage;
|
|
private String userTitle;
|
|
|
|
public Praise() {
|
|
}
|
|
|
|
public long getCreateUser() {
|
|
return this.createUser;
|
|
}
|
|
|
|
public String getIconType() {
|
|
return this.iconType;
|
|
}
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public int getLevel() {
|
|
return this.level;
|
|
}
|
|
|
|
public String getNickName() {
|
|
return this.nickName;
|
|
}
|
|
|
|
public String getPostCoverUrl() {
|
|
return this.postCoverUrl;
|
|
}
|
|
|
|
public String getPostIconUrl() {
|
|
return this.postIconUrl;
|
|
}
|
|
|
|
public String getTags() {
|
|
return this.tags;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return this.title;
|
|
}
|
|
|
|
public String getUserImage() {
|
|
return this.userImage;
|
|
}
|
|
|
|
public String getUserTitle() {
|
|
return this.userTitle;
|
|
}
|
|
|
|
public void setCreateUser(long j) {
|
|
this.createUser = j;
|
|
}
|
|
|
|
public void setIconType(String str) {
|
|
this.iconType = str;
|
|
}
|
|
|
|
public void setId(int i) {
|
|
this.id = i;
|
|
}
|
|
|
|
public void setLevel(int i) {
|
|
this.level = i;
|
|
}
|
|
|
|
public void setNickName(String str) {
|
|
this.nickName = str;
|
|
}
|
|
|
|
public void setPostCoverUrl(String str) {
|
|
this.postCoverUrl = str;
|
|
}
|
|
|
|
public void setPostIconUrl(String str) {
|
|
this.postIconUrl = str;
|
|
}
|
|
|
|
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 void setUserTitle(String str) {
|
|
this.userTitle = str;
|
|
}
|
|
}
|
|
|
|
public int getCurrent() {
|
|
return this.current;
|
|
}
|
|
|
|
public int getPages() {
|
|
return this.pages;
|
|
}
|
|
|
|
public List<Praise> 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<Praise> list) {
|
|
this.records = list;
|
|
}
|
|
|
|
public void setSize(int i) {
|
|
this.size = i;
|
|
}
|
|
|
|
public void setTotal(int i) {
|
|
this.total = i;
|
|
}
|
|
}
|