UpdateCustomOptionDTO.java 435 B

1234567891011121314151617181920212223242526272829303132
  1. package cn.cslg.pas.common.dto.business;
  2. import lombok.Data;
  3. /**
  4. * 更新自定义选项DTO
  5. * @Author xiexiang
  6. * @Date 2023/11/13
  7. */
  8. @Data
  9. public class UpdateCustomOptionDTO {
  10. /**
  11. * id
  12. */
  13. private Integer id;
  14. /**
  15. * 选项值
  16. */
  17. private String name;
  18. /**
  19. * 所属自定义栏位
  20. */
  21. private Integer customFieldId;
  22. /**
  23. * 父id
  24. */
  25. private Integer parentId;
  26. }