1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.ruoyi.doublePrevention.entity.ZDReport;
|
| import lombok.Data;
|
| import java.util.Date;
|
| @Data
| public class HandlerZDReportParam {
| /**
| * 主键
| */
| private String id;
| /**
| * 上报状态 1-待上报;2-已上报;3-不上报;4-变更需上传
| */
| private Byte zhunReportStatus;
| /**
| * 上报时间
| */
| private Date zhunReportTime;
|
|
| }
|
|