| | |
| | | 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; |
| | | |
| | |
| | | * 隐患排查检查点信息表 tr_hidden_danger_check_point |
| | | * |
| | | */ |
| | | @Data |
| | | public class HiddenDangerCheckPoint extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @Transient |
| | | private Long mobileCode; |
| | | |
| | | @Transient |
| | | private Integer tag; |
| | | |
| | | @Transient |
| | | private List<PreventRiskDangerConfirmLog> confirmLogList; |
| | | |
| | | |
| | | public Long getMobileCode() { |
| | | return mobileCode; |