package com.gkhy.safePlatform.emergency.model.dto.resp;
|
|
import java.util.List;
|
|
public class StatisticsDepLevelYearExecuteRespDTO {
|
//部门级别
|
private Byte depLevel;
|
//年份
|
private Integer year;
|
//总计数量
|
private Integer yearTotalCount;
|
//月份数据集合
|
List<StatisticsMonthExecuteCountRespDTO> monthExecuteCountList;
|
|
|
public Byte getDepLevel() {
|
return depLevel;
|
}
|
|
public void setDepLevel(Byte depLevel) {
|
this.depLevel = depLevel;
|
}
|
|
public List<StatisticsMonthExecuteCountRespDTO> getMonthExecuteCountList() {
|
return monthExecuteCountList;
|
}
|
|
public void setMonthExecuteCountList(List<StatisticsMonthExecuteCountRespDTO> monthExecuteCountList) {
|
this.monthExecuteCountList = monthExecuteCountList;
|
}
|
|
public Integer getYear() {
|
return year;
|
}
|
|
public void setYear(Integer year) {
|
this.year = year;
|
}
|
|
public Integer getYearTotalCount() {
|
return yearTotalCount;
|
}
|
|
public void setYearTotalCount(Integer yearTotalCount) {
|
this.yearTotalCount = yearTotalCount;
|
}
|
}
|