package com.gkhy.safePlatform.emergency.rpc.api.model.req;
|
|
public class EmergencyExecuteNumRPCReq {
|
|
// 部门id
|
private Long deptId;
|
|
// 查询时间类型 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 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;
|
}
|
}
|