TblDicItem.java 641 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package com.hfln.device.infrastructure.po;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Data;
  4. import lombok.EqualsAndHashCode;
  5. /**
  6. * 字典项表
  7. */
  8. @Data
  9. @EqualsAndHashCode(callSuper = true)
  10. @TableName("tbl_dic_item")
  11. public class TblDicItem extends BasePO {
  12. /**
  13. * 主键ID
  14. */
  15. @TableId(type = IdType.ASSIGN_ID)
  16. private Long itemId;
  17. /**
  18. * 字典编码
  19. */
  20. private String dicCode;
  21. /**
  22. * 字典项名称
  23. */
  24. private String itemName;
  25. /**
  26. * 字典项值
  27. */
  28. private String itemValue;
  29. /**
  30. * 排序号
  31. */
  32. private Integer sort;
  33. }