group.rober.base.dict.service.impl.po.DictItemPO Maven / Gradle / Ivy
The newest version!
package group.rober.base.dict.service.impl.po;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
@Table(name = "FOWK_DICT_ITEM")
public class DictItemPO implements Serializable ,Cloneable{
@Id
private String dictCode;
@Id
private String code;
private String name;
private String nameI18nCode;
private String value;
private String sortCode;
private int hotspot;
private String correlation;
private String status;
private String summary;
private long revision;
private String createdBy;
private Date createdTime;
private String updatedBy;
private Date updatedTime;
public String getDictCode() {
return dictCode;
}
public void setDictCode(String dictCode) {
this.dictCode = dictCode;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getNameI18nCode() {
return nameI18nCode;
}
public void setNameI18nCode(String nameI18nCode) {
this.nameI18nCode = nameI18nCode;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getSortCode() {
return sortCode;
}
public void setSortCode(String sortCode) {
this.sortCode = sortCode;
}
public int getHotspot() {
return hotspot;
}
public void setHotspot(int hotspot) {
this.hotspot = hotspot;
}
public String getCorrelation() {
return correlation;
}
public void setCorrelation(String correlation) {
this.correlation = correlation;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getSummary() {
return summary;
}
public void setSummary(String summary) {
this.summary = summary;
}
public long getRevision() {
return revision;
}
public void setRevision(long revision) {
this.revision = revision;
}
public String getCreatedBy() {
return createdBy;
}
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
public Date getCreatedTime() {
return createdTime;
}
public void setCreatedTime(Date createdTime) {
this.createdTime = createdTime;
}
public String getUpdatedBy() {
return updatedBy;
}
public void setUpdatedBy(String updatedBy) {
this.updatedBy = updatedBy;
}
public Date getUpdatedTime() {
return updatedTime;
}
public void setUpdatedTime(Date updatedTime) {
this.updatedTime = updatedTime;
}
}