package com.ruoyi.project.dc.securityType.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.framework.web.domain.TreeEntity;
|
|
/**
|
* 安全体系文件分类对象 dc_security_type
|
*
|
* @author wm
|
* @date 2020-12-09
|
*/
|
public class SecurityType extends TreeEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 类型id */
|
private Long securityTypeId;
|
|
/** 创建用户id */
|
private Long createUserId;
|
|
/** 更新用户id */
|
private Long updateUserId;
|
|
/** 类型名称 */
|
@Excel(name = "类型名称")
|
private String typeName;
|
|
public void setSecurityTypeId(Long securityTypeId)
|
{
|
this.securityTypeId = securityTypeId;
|
}
|
|
public Long getSecurityTypeId()
|
{
|
return securityTypeId;
|
}
|
public void setCreateUserId(Long createUserId)
|
{
|
this.createUserId = createUserId;
|
}
|
|
public Long getCreateUserId()
|
{
|
return createUserId;
|
}
|
public void setUpdateUserId(Long updateUserId)
|
{
|
this.updateUserId = updateUserId;
|
}
|
|
public Long getUpdateUserId()
|
{
|
return updateUserId;
|
}
|
public void setTypeName(String typeName)
|
{
|
this.typeName = typeName;
|
}
|
|
public String getTypeName()
|
{
|
return typeName;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("securityTypeId", getSecurityTypeId())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("createUserId", getCreateUserId())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("updateUserId", getUpdateUserId())
|
.append("parentId", getParentId())
|
.append("ancestors", getAncestors())
|
.append("typeName", getTypeName())
|
.append("orderNum", getOrderNum())
|
.toString();
|
}
|
}
|