first commit

This commit is contained in:
Ray
2026-02-19 03:37:37 +08:00
commit ccfd8c79a4
2813 changed files with 453657 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
package project.cms;
import java.util.Date;
import kernel.bo.EntityObject;
/**
*
*/
public class Cms extends EntityObject {
/**
* 标题
*/
private String title;
/**
* 内容
*/
private String content;
private Date createTime;
private String language;
/**
* 模块所属类型 '类型 0-公告管理1-文章管理'
*/
private Integer type;
/**
* '0-启用1-禁用'
*/
private Integer status;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getLanguage() {
return language;
}
public void setLanguage(String language) {
this.language = language;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
}