package com.whyc.dto;
|
|
import com.whyc.pojo.BaoJiGroup;
|
import com.whyc.pojo.StationInf;
|
|
import java.util.List;
|
|
public class GroupWithStationAndAlarmDTO {
|
private String groupName;
|
private List<StationInf> stationInfList;
|
|
private Integer stationCount;
|
private Integer battAlarmCount;
|
private Integer deviceAlarmCount;
|
private Integer powerAlarmCount;
|
|
public String getGroupName() {
|
return groupName;
|
}
|
|
public void setGroupName(String groupName) {
|
this.groupName = groupName;
|
}
|
|
public List<StationInf> getStationInfList() {
|
return stationInfList;
|
}
|
|
public void setStationInfList(List<StationInf> stationInfList) {
|
this.stationInfList = stationInfList;
|
}
|
|
public Integer getStationCount() {
|
return stationCount;
|
}
|
|
public void setStationCount(Integer stationCount) {
|
this.stationCount = stationCount;
|
}
|
|
public Integer getBattAlarmCount() {
|
return battAlarmCount;
|
}
|
|
public void setBattAlarmCount(Integer battAlarmCount) {
|
this.battAlarmCount = battAlarmCount;
|
}
|
|
public Integer getDeviceAlarmCount() {
|
return deviceAlarmCount;
|
}
|
|
public void setDeviceAlarmCount(Integer deviceAlarmCount) {
|
this.deviceAlarmCount = deviceAlarmCount;
|
}
|
|
public Integer getPowerAlarmCount() {
|
return powerAlarmCount;
|
}
|
|
public void setPowerAlarmCount(Integer powerAlarmCount) {
|
this.powerAlarmCount = powerAlarmCount;
|
}
|
}
|