87 lines
1.5 KiB
Java
87 lines
1.5 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class CommentEntities {
|
|
private String content;
|
|
private String createTime;
|
|
private int id;
|
|
private String isDeleted;
|
|
private int postId;
|
|
private int product;
|
|
private int replyTo;
|
|
private int type;
|
|
private int userId;
|
|
|
|
public String getContent() {
|
|
return this.content;
|
|
}
|
|
|
|
public String getCreateTime() {
|
|
return this.createTime;
|
|
}
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public String getIsDeleted() {
|
|
return this.isDeleted;
|
|
}
|
|
|
|
public int getPostId() {
|
|
return this.postId;
|
|
}
|
|
|
|
public int getProduct() {
|
|
return this.product;
|
|
}
|
|
|
|
public int getReplyTo() {
|
|
return this.replyTo;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public int getUserId() {
|
|
return this.userId;
|
|
}
|
|
|
|
public void setContent(String str) {
|
|
this.content = str;
|
|
}
|
|
|
|
public void setCreateTime(String str) {
|
|
this.createTime = str;
|
|
}
|
|
|
|
public void setId(int i) {
|
|
this.id = i;
|
|
}
|
|
|
|
public void setIsDeleted(String str) {
|
|
this.isDeleted = str;
|
|
}
|
|
|
|
public void setPostId(int i) {
|
|
this.postId = i;
|
|
}
|
|
|
|
public void setProduct(int i) {
|
|
this.product = i;
|
|
}
|
|
|
|
public void setReplyTo(int i) {
|
|
this.replyTo = i;
|
|
}
|
|
|
|
public void setType(int i) {
|
|
this.type = i;
|
|
}
|
|
|
|
public void setUserId(int i) {
|
|
this.userId = i;
|
|
}
|
|
}
|