1234567891011121314151617181920212223242526272829303132 |
- package cn.cslg.pas.common.dto.business;
- import lombok.Data;
- /**
- * 更新自定义选项DTO
- * @Author xiexiang
- * @Date 2023/11/13
- */
- @Data
- public class UpdateCustomOptionDTO {
- /**
- * id
- */
- private Integer id;
- /**
- * 选项值
- */
- private String name;
- /**
- * 所属自定义栏位
- */
- private Integer customFieldId;
- /**
- * 父id
- */
- private Integer parentId;
- }
|