69 lines
1.2 KiB
Java
69 lines
1.2 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class JImage {
|
|
private String createTime;
|
|
private String description;
|
|
private int id;
|
|
private String imgUrl;
|
|
private int isDeleted;
|
|
private int postId;
|
|
private String type;
|
|
|
|
public String getCreateTime() {
|
|
return this.createTime;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return this.description;
|
|
}
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public String getImgUrl() {
|
|
return this.imgUrl;
|
|
}
|
|
|
|
public int getIsDeleted() {
|
|
return this.isDeleted;
|
|
}
|
|
|
|
public int getPostId() {
|
|
return this.postId;
|
|
}
|
|
|
|
public String getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public void setCreateTime(String str) {
|
|
this.createTime = str;
|
|
}
|
|
|
|
public void setDescription(String str) {
|
|
this.description = str;
|
|
}
|
|
|
|
public void setId(int i) {
|
|
this.id = i;
|
|
}
|
|
|
|
public void setImgUrl(String str) {
|
|
this.imgUrl = str;
|
|
}
|
|
|
|
public void setIsDeleted(int i) {
|
|
this.isDeleted = i;
|
|
}
|
|
|
|
public void setPostId(int i) {
|
|
this.postId = i;
|
|
}
|
|
|
|
public void setType(String str) {
|
|
this.type = str;
|
|
}
|
|
}
|