Files
123123/comm/Cms/src/project/cms/Cms.java
2026-02-19 03:37:37 +08:00

82 lines
1.1 KiB
Java
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;
}
}