双重预防项目-国泰新华二开定制版
16639036659
2022-10-31 5334a4a5d54f2d826bbf248fc05c8fc8e612b677
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
38
39
40
41
42
package com.ruoyi.doublePrevention.repository.param;
 
import java.util.Date;
 
public class HandlerCJReportParam {
    /**
     * 主键
     */
    private String id;
    /**
     * 上报状态 1-待上报;2-已上报;3-不上报;4-变更需上传
     */
    private Byte reportStatus;
    /**
     * 上报时间
     */
    private Date reportTime;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Byte getReportStatus() {
        return reportStatus;
    }
 
    public void setReportStatus(Byte reportStatus) {
        this.reportStatus = reportStatus;
    }
 
    public Date getReportTime() {
        return reportTime;
    }
 
    public void setReportTime(Date reportTime) {
        this.reportTime = reportTime;
    }
}