songhuangfeng123
2022-09-05 208b6439eb8e63b6485240a8b466ebdcfd08c57a
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.gkhy.safePlatform.emergency.rpc.api.model.dto.req;
 
public class EmergencyExecuteNumRPCReq {
 
    /**
     * 1、指定年份,查该年度12个月份的
     * 2、指定年份月份,查该指定月份的
     */
 
    // 部门id
    private Long deptId;
 
    //年
    private Integer year;
 
    // 月
    private Integer month;
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public Integer getYear() {
        return year;
    }
 
    public void setYear(Integer year) {
        this.year = year;
    }
 
    public Integer getMonth() {
        return month;
    }
 
    public void setMonth(Integer month) {
        this.month = month;
    }
}