TBusLog.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package com.sooka.sponest.data.emergency.domain;
  2. import com.ruoyi.common.core.annotation.Excel;
  3. import com.ruoyi.common.core.web.domain.BaseEntity;
  4. import com.sooka.sponest.data.base.domain.BaseBusinessEntity;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. import java.util.Date;
  8. /**
  9. * 日志对象 t_bus_log
  10. *
  11. * @author ruoyi
  12. * @date 2022-11-15
  13. */
  14. @Getter
  15. @Setter
  16. public class TBusLog extends BaseBusinessEntity {
  17. private static final long serialVersionUID = 1L;
  18. /**
  19. * 日志ID
  20. */
  21. private String busLogId;
  22. /**
  23. * 日志类型
  24. */
  25. private String busLogType;
  26. @Excel(name = "日志类型")
  27. private String busLogTypeValue;
  28. /**
  29. * 来源
  30. */
  31. private String logSource;
  32. @Excel(name = "来源")
  33. private String logSourceValue;
  34. /**
  35. * 隐患
  36. */
  37. private String isRisk;
  38. @Excel(name = "隐患")
  39. private String isRiskValue;
  40. /**
  41. * 企业ID
  42. */
  43. private String busEnterpriseId;
  44. /**
  45. * 企业名称
  46. */
  47. @Excel(name = "企业名称")
  48. private String busEnterpriseName;
  49. /**
  50. * 状态
  51. */
  52. private String riskStatus;
  53. @Excel(name = "状态")
  54. private String riskStatusValue;
  55. /**
  56. * 经度
  57. */
  58. @Excel(name = "经度")
  59. private String longitude;
  60. /**
  61. * 纬度
  62. */
  63. @Excel(name = "纬度")
  64. private String latitude;
  65. /**
  66. * 巡检人
  67. */
  68. @Excel(name = "巡检人")
  69. private String createBy;
  70. private Date createTime;
  71. private String beginTime;
  72. private String endTime;
  73. private String createTimeStr;
  74. private String busPatrolstationId;
  75. private String busPatrolstationName;
  76. /**
  77. * 审核状态 0未审核 1已审核
  78. */
  79. private String isCheckStatus;
  80. /**
  81. * 审核意见: 备用字段
  82. */
  83. private String checkDetail;
  84. }