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; }