package com.gkhy.safePlatform.emergency.rpc.api.model.req;
|
|
public class EmergencyExecuteTimeRPCReq {
|
|
// 部门id
|
private Long deptId;
|
|
// 统计类型 1-只统计该部门 2-统计该部门及其子部门
|
private Integer countType;
|
|
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;
|
}
|
}
|