package com.gkhy.safePlatform.incidentManage.rpc.api.model.dto.resp;
|
|
|
import java.util.List;
|
import java.util.Map;
|
|
public class IncidentManageCountRPCResp {
|
|
// 时间 如果查的是年,返回的是月份 ,如果查的是月,返回的是天
|
private Integer time ;
|
|
// 年
|
private Integer year ;
|
|
// 月
|
private Integer month;
|
|
// 日
|
private Integer day;
|
|
// 数据类型 1 :年 2:月
|
private Integer distType;
|
|
// 数据
|
private List<IncidentManageCountDetailRPCResp> detail;
|
|
public Integer getTime() {
|
return time;
|
}
|
|
public void setTime(Integer time) {
|
this.time = time;
|
}
|
|
public List<IncidentManageCountDetailRPCResp> getDetail() {
|
return detail;
|
}
|
|
public void setDetail(List<IncidentManageCountDetailRPCResp> detail) {
|
this.detail = detail;
|
}
|
|
public Integer getYear() {
|
return year;
|
}
|
|
public void setYear(Integer year) {
|
this.year = year;
|
}
|
|
public Integer getMonth() {
|
return month;
|
}
|
|
public void setMonth(Integer month) {
|
this.month = month;
|
}
|
|
public Integer getDay() {
|
return day;
|
}
|
|
public void setDay(Integer day) {
|
this.day = day;
|
}
|
|
public Integer getDistType() {
|
return distType;
|
}
|
|
public void setDistType(Integer distType) {
|
this.distType = distType;
|
}
|
}
|