package com.gkhy.safePlatform.incidentManage.rpc.api.model.dto.req;
|
|
public class IncidentManageCountRPCReq {
|
|
/**
|
* 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;
|
}
|
}
|