package com.gkhy.safePlatform.emergency.rpc.api.model.dto.resp;
|
|
public class StatisticsMonthExecuteCountRPCRespDTO {
|
//年
|
private Integer year;
|
//月
|
private Integer month;
|
//数量
|
private Integer count;
|
|
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 getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
}
|