songhuangfeng123
2022-08-09 1bdd6405e8caffc058066bdd26cb6de1ea9cf7ea
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
43
44
45
package com.gkhy.safePlatform.incidentManage.query;
 
public class AccidentReportRPCQuery {
 
    private String level;
 
    // type=1:月  type=2:年
    private Integer type;
 
    private int year;
 
    private int month;
 
    public String getLevel() {
        return level;
    }
 
    public void setLevel(String level) {
        this.level = level;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public int getYear() {
        return year;
    }
 
    public void setYear(int year) {
        this.year = year;
    }
 
    public int getMonth() {
        return month;
    }
 
    public void setMonth(int month) {
        this.month = month;
    }
}