DemFileLabel.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package com.usky.fire.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import java.time.LocalDateTime;
  6. import java.io.Serializable;
  7. import java.util.List;
  8. import lombok.Data;
  9. import lombok.EqualsAndHashCode;
  10. /**
  11. * <p>
  12. *
  13. * </p>
  14. *
  15. * @author JCB
  16. * @since 2022-09-14
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. public class DemFileLabel implements Serializable {
  21. private static final long serialVersionUID = 1L;
  22. /**
  23. * 主键ID
  24. */
  25. @TableId(value = "id", type = IdType.AUTO)
  26. private Integer id;
  27. /**
  28. * 父ID
  29. */
  30. private Integer fid;
  31. /**
  32. * 标签名称
  33. */
  34. private String labelName;
  35. /**
  36. * 创建时间
  37. */
  38. private LocalDateTime createTime;
  39. /**
  40. * 更新时间
  41. */
  42. private LocalDateTime updateTime;
  43. /**
  44. * 更新人
  45. */
  46. private String updatePerson;
  47. /**
  48. * 创建人
  49. */
  50. private String creator;
  51. /**
  52. * 子集
  53. */
  54. @TableField(exist = false)
  55. private List<DemFileLabel> subset;
  56. /**
  57. * 属性
  58. */
  59. @TableField(exist = false)
  60. private String attribute;
  61. }