package com.gkhy.safePlatform.emergency.entity;
|
|
public class EmergencyExecuteCountDO {
|
//部门
|
private Long deptId;
|
//年份
|
private Integer year;
|
//月份
|
private Integer month;
|
// 数量
|
private Integer count;
|
|
public Long getDeptId() {
|
return deptId;
|
}
|
|
public void setDeptId(Long deptId) {
|
this.deptId = deptId;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public Integer getMonth() {
|
return month;
|
}
|
|
public void setMonth(Integer month) {
|
this.month = month;
|
}
|
|
public Integer getYear() {
|
return year;
|
}
|
|
public void setYear(Integer year) {
|
this.year = year;
|
}
|
}
|