fix
songhuangfeng123
2022-09-02 d59ce37bc27d01da323b79c10200e93796865fee
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.gkhy.safePlatform.emergency.rpc.api.model.req;
 
public class EmergencyExecuteNumRPCReq {
 
    // 部门id
    private Long deptId;
 
    // 统计类型 1-只统计该部门 2-统计该部门及其子部门
    private Integer countType;
 
    // 查询时间类型 1-年 2-月
    private Integer timeType;
 
    //年
    private Integer year;
 
    // 月
    private Integer mouth;
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public Integer getCountType() {
        return countType;
    }
 
    public void setCountType(Integer countType) {
        this.countType = countType;
    }
 
    public Integer getTimeType() {
        return timeType;
    }
 
    public void setTimeType(Integer timeType) {
        this.timeType = timeType;
    }
 
    public Integer getYear() {
        return year;
    }
 
    public void setYear(Integer year) {
        this.year = year;
    }
 
    public Integer getMouth() {
        return mouth;
    }
 
    public void setMouth(Integer mouth) {
        this.mouth = mouth;
    }
}