1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| package com.ruoyi.doublePrevention.entity.CJReport.CJdto.HandlerDO;
|
| import lombok.Data;
|
| @Data
| public class CJReportCheckRecordFromTaskDTO {
| /**
| * 主键
| */
| private String id;
| /**
| * 公司编码
| */
| private String companyCode;
| /**
| * 隐患排查作业UUID
| */
| private String checkTaskId;
| /**
| * 排查时间
| */
| private String checkTime;
|
| private String mobileMe;
|
| private String isDefend;
| /**
| * 创建人
| */
| private String createBy;
| /**
| * 创建人手机号
| */
| private String createByMobile;
|
| }
|
|
|