1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.ruoyi.doublePrevention.repository.param;
|
| import lombok.Data;
|
| import java.util.Date;
| @Data
| public class HandlerReportParam {
| /**
| * 主键
| */
| private Long id;
| /**
| * 上报状态 1-待上报;2-已上报;3-不上报;4-变更需上传
| */
| private Byte reportStatus;
| /**
| * 上报时间
| */
| private Date reportTime;
| }
|
|