123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- package com.sooka.sponest.data.emergency.domain;
- import com.ruoyi.common.core.annotation.Excel;
- import com.ruoyi.common.core.web.domain.BaseEntity;
- import com.sooka.sponest.data.base.domain.BaseBusinessEntity;
- import lombok.Getter;
- import lombok.Setter;
- import java.util.Date;
- /**
- * 日志对象 t_bus_log
- *
- * @author ruoyi
- * @date 2022-11-15
- */
- @Getter
- @Setter
- public class TBusLog extends BaseBusinessEntity {
- private static final long serialVersionUID = 1L;
- /**
- * 日志ID
- */
- private String busLogId;
- /**
- * 日志类型
- */
- private String busLogType;
- @Excel(name = "日志类型")
- private String busLogTypeValue;
- /**
- * 来源
- */
- private String logSource;
- @Excel(name = "来源")
- private String logSourceValue;
- /**
- * 隐患
- */
- private String isRisk;
- @Excel(name = "隐患")
- private String isRiskValue;
- /**
- * 企业ID
- */
- private String busEnterpriseId;
- /**
- * 企业名称
- */
- @Excel(name = "企业名称")
- private String busEnterpriseName;
- /**
- * 状态
- */
- private String riskStatus;
- @Excel(name = "状态")
- private String riskStatusValue;
- /**
- * 经度
- */
- @Excel(name = "经度")
- private String longitude;
- /**
- * 纬度
- */
- @Excel(name = "纬度")
- private String latitude;
- /**
- * 巡检人
- */
- @Excel(name = "巡检人")
- private String createBy;
- private Date createTime;
- private String beginTime;
- private String endTime;
- private String createTimeStr;
- private String busPatrolstationId;
- private String busPatrolstationName;
- /**
- * 审核状态 0未审核 1已审核
- */
- private String isCheckStatus;
- /**
- * 审核意见: 备用字段
- */
- private String checkDetail;
- }
|