双重预防项目-国泰新华二开定制版
16639036659
2024-06-13 faa6130891b7ab6e9fe14a5afb33e003b2a19b1f
src/main/java/com/ruoyi/project/tr/hiddenDangerCheckPoint/domain/HiddenDangerCheckPoint.java
@@ -1,13 +1,12 @@
package com.ruoyi.project.tr.hiddenDangerCheckPoint.domain;
import com.alibaba.fastjson.annotation.JSONField;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.doublePrevention.entity.PreventRiskDangerConfirmLog;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
import com.ruoyi.project.system.company.domain.Company;
import kotlin.jvm.Transient;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
@@ -18,6 +17,7 @@
 * 隐患排查检查点信息表 tr_hidden_danger_check_point
 * 
 */
@Data
public class HiddenDangerCheckPoint extends BaseEntity
{
    private static final long serialVersionUID = 1L;
@@ -347,6 +347,7 @@
    /** 验收创建时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @Excel(name = "验收创建时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date acceptCreateTime;
@@ -435,7 +436,13 @@
    private Long companyId;
    private String checkPerson;
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date findTime;
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date reportTime;
@@ -484,6 +491,27 @@
    private Byte dangerResult;
    @Transient
    private Long mobileCode;
    @Transient
    private Integer tag;
    @Transient
    private String checkDesc;
    @Transient
    private List<PreventRiskDangerConfirmLog> confirmLogList;
    public Long getMobileCode() {
        return mobileCode;
    }
    public void setMobileCode(Long mobileCode) {
        this.mobileCode = mobileCode;
    }
    public Byte getDangerResult() {
        return dangerResult;
    }