1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package cn.cslg.pas.common.dto.business;
- import cn.hutool.core.date.DateTime;
- import com.baomidou.mybatisplus.annotation.TableField;
- import lombok.Data;
- /**
- * 架构的DTO
- * @Author xiexiang
- * @Date 2023/10/26
- */
- @Data
- public class TreeNodeDTO {
- /**
- * 主键
- */
- private Integer id;
- /**
- * 节点名称
- */
- private String name;
- /**
- * 类型
- * (1产品类别,2产品,3技术分类,4自定义树)
- */
- private Integer type;
- /**
- * 抽象id
- * (所属产品/产品类别/自定义树/技术分类)
- */
- private Integer typeId;
- /**
- * 父id
- */
- private Integer parentId;
- /**
- * 说明
- */
- private String description;
- private String personId;
- }
|