175 lines
2.6 KiB
Plaintext
175 lines
2.6 KiB
Plaintext
package com.nationalelectric.greenH5.po;
|
|
|
|
import org.hibernate.validator.constraints.NotBlank;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* GreenDictionaryInfo
|
|
* @author dell
|
|
*/
|
|
public class GreenDictionaryInfo implements java.io.Serializable {
|
|
|
|
/**
|
|
* 序列化
|
|
*/
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/**
|
|
*主键ID
|
|
*/
|
|
|
|
private Long id;
|
|
|
|
/**
|
|
*数据类型
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String dataType;
|
|
|
|
/**
|
|
*编号
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String dataCode;
|
|
|
|
/**
|
|
*数据值
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String dataValue;
|
|
|
|
/**
|
|
*描述
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String description;
|
|
|
|
/**
|
|
*排序
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String dataSort;
|
|
|
|
/**
|
|
*创建者
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String creator;
|
|
|
|
/**
|
|
*修改者
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String modifier;
|
|
|
|
/**
|
|
*创建时间
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private Date gmtCreated;
|
|
|
|
/**
|
|
*修改时间
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private Date gmtModified;
|
|
|
|
/**
|
|
*是否删除YN默认N
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String isDeleted;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getDataType() {
|
|
return dataType;
|
|
}
|
|
|
|
public void setDataType(String dataType) {
|
|
this.dataType = dataType;
|
|
}
|
|
|
|
public String getDataCode() {
|
|
return dataCode;
|
|
}
|
|
|
|
public void setDataCode(String dataCode) {
|
|
this.dataCode = dataCode;
|
|
}
|
|
|
|
public String getDataValue() {
|
|
return dataValue;
|
|
}
|
|
|
|
public void setDataValue(String dataValue) {
|
|
this.dataValue = dataValue;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
public String getDataSort() {
|
|
return dataSort;
|
|
}
|
|
|
|
public void setDataSort(String dataSort) {
|
|
this.dataSort = dataSort;
|
|
}
|
|
|
|
public String getCreator() {
|
|
return creator;
|
|
}
|
|
|
|
public void setCreator(String creator) {
|
|
this.creator = creator;
|
|
}
|
|
|
|
public String getModifier() {
|
|
return modifier;
|
|
}
|
|
|
|
public void setModifier(String modifier) {
|
|
this.modifier = modifier;
|
|
}
|
|
|
|
public Date getGmtCreated() {
|
|
return gmtCreated;
|
|
}
|
|
|
|
public void setGmtCreated(Date gmtCreated) {
|
|
this.gmtCreated = gmtCreated;
|
|
}
|
|
|
|
public Date getGmtModified() {
|
|
return gmtModified;
|
|
}
|
|
|
|
public void setGmtModified(Date gmtModified) {
|
|
this.gmtModified = gmtModified;
|
|
}
|
|
|
|
public String getIsDeleted() {
|
|
return isDeleted;
|
|
}
|
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
this.isDeleted = isDeleted;
|
|
}
|
|
|
|
|
|
}
|