package com.ycl.platform.domain.entity;
|
|
import annotation.Excel;
|
import com.ycl.system.entity.BaseEntity;
|
import org.apache.commons.lang.builder.ToStringBuilder;
|
import org.apache.commons.lang.builder.ToStringStyle;
|
|
/**
|
* 违约规则模板对象 t_default_template
|
*
|
* @author ruoyi
|
* @date 2024-04-01
|
*/
|
public class DefaultTemplate extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** */
|
private Long id;
|
|
/** 模板名称 */
|
@Excel(name = "模板名称")
|
private String templateName;
|
|
/** 关联运维公司id */
|
@Excel(name = "关联运维公司id")
|
private Long unitId;
|
|
/** 审核状态 */
|
@Excel(name = "审核状态")
|
private Long auditState;
|
|
/** 考核类型 */
|
@Excel(name = "考核类型")
|
private Long examineCategory;
|
|
/** 启用状态 */
|
@Excel(name = "启用状态")
|
private Long status;
|
|
/** */
|
@Excel(name = "")
|
private Long createUser;
|
|
/** */
|
@Excel(name = "")
|
private Long updateUser;
|
|
/** */
|
private String createUserName;
|
|
/** */
|
private String updateUserName;
|
|
/** */
|
private String deleted;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setTemplateName(String templateName)
|
{
|
this.templateName = templateName;
|
}
|
|
public String getTemplateName()
|
{
|
return templateName;
|
}
|
public void setUnitId(Long unitId)
|
{
|
this.unitId = unitId;
|
}
|
|
public Long getUnitId()
|
{
|
return unitId;
|
}
|
public void setAuditState(Long auditState)
|
{
|
this.auditState = auditState;
|
}
|
|
public Long getAuditState()
|
{
|
return auditState;
|
}
|
public void setExamineCategory(Long examineCategory)
|
{
|
this.examineCategory = examineCategory;
|
}
|
|
public Long getExamineCategory()
|
{
|
return examineCategory;
|
}
|
public void setStatus(Long status)
|
{
|
this.status = status;
|
}
|
|
public Long getStatus()
|
{
|
return status;
|
}
|
public void setCreateUser(Long createUser)
|
{
|
this.createUser = createUser;
|
}
|
|
public Long getCreateUser()
|
{
|
return createUser;
|
}
|
public void setUpdateUser(Long updateUser)
|
{
|
this.updateUser = updateUser;
|
}
|
|
public Long getUpdateUser()
|
{
|
return updateUser;
|
}
|
public void setCreateUserName(String createUserName)
|
{
|
this.createUserName = createUserName;
|
}
|
|
public String getCreateUserName()
|
{
|
return createUserName;
|
}
|
public void setUpdateUserName(String updateUserName)
|
{
|
this.updateUserName = updateUserName;
|
}
|
|
public String getUpdateUserName()
|
{
|
return updateUserName;
|
}
|
public void setDeleted(String deleted)
|
{
|
this.deleted = deleted;
|
}
|
|
public String getDeleted()
|
{
|
return deleted;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("templateName", getTemplateName())
|
.append("unitId", getUnitId())
|
.append("auditState", getAuditState())
|
.append("examineCategory", getExamineCategory())
|
.append("status", getStatus())
|
.append("createTime", getCreateTime())
|
.append("updateTime", getUpdateTime())
|
.append("createUser", getCreateUser())
|
.append("updateUser", getUpdateUser())
|
.append("createUserName", getCreateUserName())
|
.append("updateUserName", getUpdateUserName())
|
.append("deleted", getDeleted())
|
.toString();
|
}
|
}
|