package com.gkhy.safePlatform.emergency.rpc.api.model.dto.resp; import java.util.List; public class StatisticsDepLevelYearExecuteRPCRespDTO { //部门级别 private Byte depLevel; //年份 private Integer year; //总计数量 private Integer yearTotalCount; //月份数据集合 List monthExecuteCountList; public Byte getDepLevel() { return depLevel; } public void setDepLevel(Byte depLevel) { this.depLevel = depLevel; } public List getMonthExecuteCountList() { return monthExecuteCountList; } public void setMonthExecuteCountList(List 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; } }