BscEnterpriseScreen.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package com.usky.fire.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import java.time.LocalDateTime;
  5. import java.io.Serializable;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. /**
  9. * <p>
  10. * 企业大屏数据统计
  11. * </p>
  12. *
  13. * @author JCB
  14. * @since 2022-09-06
  15. */
  16. @Data
  17. @EqualsAndHashCode(callSuper = false)
  18. public class BscEnterpriseScreen implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. * 主键ID
  22. */
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Integer id;
  25. /**
  26. * 自主巡检情况
  27. */
  28. private String patrolInspection;
  29. /**
  30. * 值班查岗情况
  31. */
  32. private String postInspect;
  33. /**
  34. * 火灾告警报告
  35. */
  36. private String fireAlarm;
  37. /**
  38. * 预案场景
  39. */
  40. private String reservePlan;
  41. /**
  42. * 隐患处置情况
  43. */
  44. private String hiddenDanger;
  45. /**
  46. * 建筑评分模块
  47. */
  48. private String buildScore;
  49. /**
  50. * 单位ID
  51. */
  52. private String companyId;
  53. /**
  54. * 创建时间
  55. */
  56. private LocalDateTime createTime;
  57. }