EventManage.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package com.usky.dm.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import lombok.experimental.Accessors;
  8. import java.io.Serializable;
  9. import java.util.Date;
  10. /**
  11. * <p>
  12. * 事件管理
  13. * </p>
  14. *
  15. * @author ya
  16. * @since 2022-02-22
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. @Accessors(chain = true)
  21. public class EventManage implements Serializable {
  22. private static final long serialVersionUID=1L;
  23. /**
  24. * 事件管理主键ID
  25. */
  26. @TableId(value = "id", type = IdType.AUTO)
  27. private Integer id;
  28. private String eventName;
  29. /**
  30. * 事件类型:1.消防隐患;2.消防告警;3.设备设施
  31. */
  32. private Integer eventType;
  33. /**
  34. * 报告内容
  35. */
  36. private String eventContent;
  37. /**
  38. * 上报时间
  39. */
  40. private Date reportingTime;
  41. /**
  42. * 状态:1.已处理; 0.未处理;
  43. */
  44. private Integer clzt;
  45. /**
  46. * 处理人
  47. */
  48. private String clPeople;
  49. /**
  50. * 处理内容
  51. */
  52. private String clContent;
  53. /**
  54. * 处理时间
  55. */
  56. private Date clTiem;
  57. /**
  58. * 单位编号
  59. */
  60. private String companyCode;
  61. /**
  62. * 单位名称
  63. */
  64. @TableField(exist = false)
  65. private String companyName;
  66. }