package com.gkhy.safePlatform.incidentManage.rpc.api.model.dto.resp;
|
|
import java.util.List;
|
|
/**
|
* 返回月数量
|
*/
|
public class StatisticsDepLevelMonthAccidentRPCRespDTO {
|
//部门等级
|
private Byte depLevel;
|
//月份
|
private Integer month;
|
|
//事故等级集合
|
private List<AccidentLevelResultCountRPCRespDTO> accidentLevelList;
|
|
public Byte getDepLevel() {
|
return depLevel;
|
}
|
|
public void setDepLevel(Byte depLevel) {
|
this.depLevel = depLevel;
|
}
|
|
public Integer getMonth() {
|
return month;
|
}
|
|
public void setMonth(Integer month) {
|
this.month = month;
|
}
|
|
|
public List<AccidentLevelResultCountRPCRespDTO> getAccidentLevelList() {
|
return accidentLevelList;
|
}
|
|
public void setAccidentLevelList(List<AccidentLevelResultCountRPCRespDTO> accidentLevelList) {
|
this.accidentLevelList = accidentLevelList;
|
}
|
}
|