EmergencyUser.java 836 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.ruoyi.web.domain.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import com.fasterxml.jackson.annotation.JsonIgnore;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * 应急指令负责人表
  9. *
  10. * @TableName emergency_user
  11. */
  12. @TableName(value = "emergency_user")
  13. @Data
  14. public class EmergencyUser implements Serializable {
  15. /**
  16. * ID
  17. */
  18. @TableId(type = IdType.AUTO)
  19. private Integer id;
  20. /**
  21. * 负责人ID
  22. */
  23. private Integer userId;
  24. /**
  25. * 创建时间
  26. */
  27. private Date createTime;
  28. /**
  29. * 修改时间
  30. */
  31. private Date updateTime;
  32. /**
  33. * 删除标志
  34. */
  35. @TableLogic
  36. @JsonIgnore
  37. private String delFlag;
  38. @TableField(exist = false)
  39. private static final long serialVersionUID = 1L;
  40. }