package com.gkhy.safePlatform.emergency.model.dto.resp;
|
|
|
import java.util.List;
|
|
public class EmergencyDrillExecuteCountRespDTO {
|
|
private Integer days;
|
|
private List<EmergencyDrillExecuteCountChartRespDTO> dataList;
|
|
public Integer getDays() {
|
return days;
|
}
|
|
public void setDays(Integer days) {
|
this.days = days;
|
}
|
|
public List<EmergencyDrillExecuteCountChartRespDTO> getDataList() {
|
return dataList;
|
}
|
|
public void setDataList(List<EmergencyDrillExecuteCountChartRespDTO> dataList) {
|
this.dataList = dataList;
|
}
|
}
|