DictionaryDataInfoVO.java 830 B

12345678910111213141516171819202122232425262728293031
  1. package jnpf.base.model.dictionarydata;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. *
  6. * @author JNPF开发平台组
  7. * @version V3.1.0
  8. * @copyright 引迈信息技术有限公司
  9. * @date 2021/3/12 15:31
  10. */
  11. @Data
  12. public class DictionaryDataInfoVO {
  13. @Schema(description = "主键")
  14. private String id;
  15. @Schema(description = "父级主键")
  16. private String parentId;
  17. @Schema(description = "说明")
  18. private String description;
  19. @Schema(description = "名称")
  20. private String fullName;
  21. @Schema(description = "编码")
  22. private String enCode;
  23. @Schema(description = "有效标志")
  24. private Integer enabledMark;
  25. @Schema(description = "分类id")
  26. private String dictionaryTypeId;
  27. @Schema(description = "排序码")
  28. private long sortCode;
  29. }