package com.yssh.entity;
|
|
|
import org.junit.platform.commons.util.ToStringBuilder;
|
|
/**
|
* 字典记录对象 yssh_dict_record
|
*
|
* @author xingjinshuang@smartearth.cn
|
* @date 2023-02-06
|
*/
|
public class DictRecord {
|
private static final long serialVersionUID = 1L;
|
|
/** ID */
|
private Long id;
|
|
/** 表名称 */
|
private String tableName;
|
|
/** 表其他内容 */
|
private String other;
|
|
/** 备注 */
|
private String remarks;
|
|
/** 状态 */
|
private String status;
|
|
/** 预留一 */
|
private String resOne;
|
|
/** 预留二 */
|
private String resTwo;
|
|
/** 预留三 */
|
private String resThree;
|
|
/** 预留四 */
|
private String resFour;
|
|
/** 创建时间 */
|
private String createTime;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setTableName(String tableName)
|
{
|
this.tableName = tableName;
|
}
|
|
public String getTableName()
|
{
|
return tableName;
|
}
|
public void setOther(String other)
|
{
|
this.other = other;
|
}
|
|
public String getOther()
|
{
|
return other;
|
}
|
public void setRemarks(String remarks)
|
{
|
this.remarks = remarks;
|
}
|
|
public String getRemarks()
|
{
|
return remarks;
|
}
|
public void setStatus(String status)
|
{
|
this.status = status;
|
}
|
|
public String getStatus()
|
{
|
return status;
|
}
|
public void setResOne(String resOne)
|
{
|
this.resOne = resOne;
|
}
|
|
public String getResOne()
|
{
|
return resOne;
|
}
|
public void setResTwo(String resTwo)
|
{
|
this.resTwo = resTwo;
|
}
|
|
public String getResTwo()
|
{
|
return resTwo;
|
}
|
public void setResThree(String resThree)
|
{
|
this.resThree = resThree;
|
}
|
|
public String getResThree()
|
{
|
return resThree;
|
}
|
public void setResFour(String resFour)
|
{
|
this.resFour = resFour;
|
}
|
|
public String getResFour()
|
{
|
return resFour;
|
}
|
|
//时间
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
}
|