package com.landy.gum.check.model;
|
|
import java.util.Date;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.GeneratedValue;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
|
import com.landy.framework.core.model.BaseModel;
|
import com.landy.framework.core.model.OperationLog;
|
|
/**
|
* Model class for ScEmphasis
|
*/
|
@Entity
|
@Table(name = "sc_emphasis")
|
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)
|
public class ScEmphasisModel extends BaseModel implements OperationLog {
|
|
//ID
|
private String scemId;
|
//月度重点-年月
|
private String scemMonth;
|
//月度重点内容
|
private String scemContent;
|
//月度重点是否下发
|
private String scemState;
|
//creator
|
private String creator;
|
//createTime
|
private Date createTime;
|
//modifier
|
private String modifier;
|
//modifyTime
|
private Date modifyTime;
|
|
/**
|
* Get ID
|
*/
|
@Column(name = "scem_id")
|
@Id @GeneratedValue(generator = "UUIDGenerator")
|
public String getScemId() {
|
return scemId;
|
}
|
|
/**
|
* Set ID
|
*/
|
public void setScemId(String scemId) {
|
this.scemId = scemId;
|
addValidField("scemId");
|
}
|
|
/**
|
* Get 月度重点-年月
|
*/
|
@Column(name = "scem_month")
|
public String getScemMonth() {
|
return scemMonth;
|
}
|
|
/**
|
* Set 月度重点-年月
|
*/
|
public void setScemMonth(String scemMonth) {
|
this.scemMonth = scemMonth;
|
addValidField("scemMonth");
|
}
|
|
/**
|
* Get 月度重点内容
|
*/
|
@Column(name = "scem_content")
|
public String getScemContent() {
|
return scemContent;
|
}
|
|
/**
|
* Set 月度重点内容
|
*/
|
public void setScemContent(String scemContent) {
|
this.scemContent = scemContent;
|
addValidField("scemContent");
|
}
|
|
/**
|
* Get 月度重点是否下发
|
* Y:下发 N:没有下发
|
*/
|
@Column(name = "scem_state")
|
public String getScemState() {
|
return scemState;
|
}
|
|
/**
|
* Set 月度重点是否下发
|
* Y:下发 N:没有下发
|
*/
|
public void setScemState(String scemState) {
|
this.scemState = scemState;
|
addValidField("scemState");
|
}
|
|
/**
|
* Get creator
|
*/
|
@Column(name = "creator")
|
public String getCreator() {
|
return creator;
|
}
|
|
/**
|
* Set creator
|
*/
|
public void setCreator(String creator) {
|
this.creator = creator;
|
addValidField("creator");
|
}
|
|
/**
|
* Get createTime
|
*/
|
@Column(name = "create_time")
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
/**
|
* Set createTime
|
*/
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
addValidField("createTime");
|
}
|
|
/**
|
* Get modifier
|
*/
|
@Column(name = "modifier")
|
public String getModifier() {
|
return modifier;
|
}
|
|
/**
|
* Set modifier
|
*/
|
public void setModifier(String modifier) {
|
this.modifier = modifier;
|
addValidField("modifier");
|
}
|
|
/**
|
* Get modifyTime
|
*/
|
@Column(name = "modify_time")
|
public Date getModifyTime() {
|
return modifyTime;
|
}
|
|
/**
|
* Set modifyTime
|
*/
|
public void setModifyTime(Date modifyTime) {
|
this.modifyTime = modifyTime;
|
addValidField("modifyTime");
|
}
|
|
}
|