DictItemVO.java 466 B

123456789101112131415161718192021222324252627
  1. package com.punchsettle.server.pojo.dict;
  2. import com.fasterxml.jackson.annotation.JsonProperty;
  3. import lombok.Data;
  4. /**
  5. * @author myou
  6. * @version 1.0.0
  7. * @date 2024/12/21 21:01
  8. * @description 字典项查询结果
  9. */
  10. @Data
  11. public class DictItemVO {
  12. /**
  13. * 字典项编码
  14. */
  15. @JsonProperty(value = "value")
  16. private Object itemCode;
  17. /**
  18. * 字典项名称
  19. */
  20. @JsonProperty(value = "text")
  21. private String itemName;
  22. }