1234567891011121314151617181920212223242526 |
- package cn.cslg.pas.common.dto.business;
- import lombok.Data;
- /**
- * 回避设计DTO
- * @Author xiexiang
- * @Date 2023/12/5
- */
- @Data
- public class AvoidDesignDTO {
- /**
- * 对应特征
- */
- private Integer featureId;
- private String content;
- private String explainText;
- private Integer rightSort;
- private Integer rightType;
- /**
- * 回避设计方向
- */
- private String direction;
-
- }
|