DataDict.java 750 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package com.kym.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.kym.entity.BaseEntity;
  4. import lombok.Getter;
  5. import lombok.Setter;
  6. import java.io.Serializable;
  7. /**
  8. * <p>
  9. * 数据字典
  10. * </p>
  11. *
  12. * @author zuy
  13. * @since 2023-08-13
  14. */
  15. @Getter
  16. @Setter
  17. @TableName("t_data_dict")
  18. public class DataDict extends BaseEntity implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. * 字典编码
  22. */
  23. private String code;
  24. private Long weight;
  25. /**
  26. * 名称
  27. */
  28. private String name;
  29. /**
  30. * 定义值
  31. */
  32. private String value;
  33. /**
  34. * 备注
  35. */
  36. private String remark;
  37. /**
  38. * 颜色
  39. */
  40. private String color;
  41. }