|
|
package com.yoho.ufo.model.resource;
|
|
|
|
|
|
/**
|
|
|
* Created by shengguo.cai on 2018/11/16.
|
|
|
*/
|
|
|
public class ResourcesContentData {
|
|
|
private Integer id;
|
|
|
private Integer platformId;
|
|
|
private Integer sortId;
|
|
|
private Integer resourceContentId;
|
|
|
private String templateKey;
|
|
|
private String contentData;
|
|
|
private Integer createTime;
|
|
|
private Integer publishTime;
|
|
|
private Integer updateTime;
|
|
|
private Integer preContentId;
|
|
|
private Integer status;
|
|
|
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
}
|
|
|
|
|
|
public void setId(Integer id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
public Integer getPlatformId() {
|
|
|
return platformId;
|
|
|
}
|
|
|
|
|
|
public void setPlatformId(Integer platformId) {
|
|
|
this.platformId = platformId;
|
|
|
}
|
|
|
|
|
|
public Integer getSortId() {
|
|
|
return sortId;
|
|
|
}
|
|
|
|
|
|
public void setSortId(Integer sortId) {
|
|
|
this.sortId = sortId;
|
|
|
}
|
|
|
|
|
|
public Integer getResourceContentId() {
|
|
|
return resourceContentId;
|
|
|
}
|
|
|
|
|
|
public void setResourceContentId(Integer resourceContentId) {
|
|
|
this.resourceContentId = resourceContentId;
|
|
|
}
|
|
|
|
|
|
public String getTemplateKey() {
|
|
|
return templateKey;
|
|
|
}
|
|
|
|
|
|
public void setTemplateKey(String templateKey) {
|
|
|
this.templateKey = templateKey;
|
|
|
}
|
|
|
|
|
|
public String getContentData() {
|
|
|
return contentData;
|
|
|
}
|
|
|
|
|
|
public void setContentData(String contentData) {
|
|
|
this.contentData = contentData;
|
|
|
}
|
|
|
|
|
|
public Integer getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|
|
|
public void setCreateTime(Integer createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
|
|
|
public Integer getPublishTime() {
|
|
|
return publishTime;
|
|
|
}
|
|
|
|
|
|
public void setPublishTime(Integer publishTime) {
|
|
|
this.publishTime = publishTime;
|
|
|
}
|
|
|
|
|
|
public Integer getUpdateTime() {
|
|
|
return updateTime;
|
|
|
}
|
|
|
|
|
|
public void setUpdateTime(Integer updateTime) {
|
|
|
this.updateTime = updateTime;
|
|
|
}
|
|
|
|
|
|
public Integer getPreContentId() {
|
|
|
return preContentId;
|
|
|
}
|
|
|
|
|
|
public void setPreContentId(Integer preContentId) {
|
|
|
this.preContentId = preContentId;
|
|
|
}
|
|
|
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
} |
...
|
...
|
|