123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- package com.ruoyi.system.domain;
- import com.ruoyi.common.core.domain.entity.SysDept;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- import java.util.ArrayList;
- import java.util.List;
- /**
- * 考察配置对象 investigate_disposition
- *
- * @author ruoyi
- * @date 2023-10-10
- */
- public class InvestigateDisposition extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** id */
- private Long investigateDispositionId;
- /** 父配置id */
- @Excel(name = "父配置id")
- private Long parentId;
- /** 祖级列表 */
- @Excel(name = "祖级列表")
- private String ancestors;
- /** 显示顺序 */
- @Excel(name = "显示顺序")
- private Integer orderNum;
- /** 标题 */
- @Excel(name = "标题")
- private String title;
- /** 链接地址 */
- @Excel(name = "链接地址")
- private String url;
- /** 是否启用 Y:启用 N:不启用 */
- @Excel(name = "是否启用 Y:启用 N:不启用")
- private String status;
- /** 父部门名称 */
- private String parentName;
- /** 子部门 */
- private List<SysDept> children = new ArrayList<SysDept>();
- public String getParentName()
- {
- return parentName;
- }
- public void setParentName(String parentName)
- {
- this.parentName = parentName;
- }
- public List<SysDept> getChildren()
- {
- return children;
- }
- public void setChildren(List<SysDept> children)
- {
- this.children = children;
- }
- public void setInvestigateDispositionId(Long investigateDispositionId)
- {
- this.investigateDispositionId = investigateDispositionId;
- }
- public Long getInvestigateDispositionId()
- {
- return investigateDispositionId;
- }
- public void setParentId(Long parentId)
- {
- this.parentId = parentId;
- }
- public Long getParentId()
- {
- return parentId;
- }
- public void setAncestors(String ancestors)
- {
- this.ancestors = ancestors;
- }
- public String getAncestors()
- {
- return ancestors;
- }
- public void setOrderNum(Integer orderNum)
- {
- this.orderNum = orderNum;
- }
- public Integer getOrderNum()
- {
- return orderNum;
- }
- public void setTitle(String title)
- {
- this.title = title;
- }
- public String getTitle()
- {
- return title;
- }
- public void setUrl(String url)
- {
- this.url = url;
- }
- public String getUrl()
- {
- return url;
- }
- public void setStatus(String status)
- {
- this.status = status;
- }
- public String getStatus()
- {
- return status;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("investigateDispositionId", getInvestigateDispositionId())
- .append("parentId", getParentId())
- .append("ancestors", getAncestors())
- .append("orderNum", getOrderNum())
- .append("title", getTitle())
- .append("url", getUrl())
- .append("status", getStatus())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("remark", getRemark())
- .toString();
- }
- }
|