package com.gkhy.safePlatform.emergency.model.dto.resp;
|
|
|
public class EmergencySuppliesCountRespDTO {
|
|
private String name;
|
|
private Integer totalNum;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Integer getTotalNum() {
|
return totalNum;
|
}
|
|
public void setTotalNum(Integer totalNum) {
|
this.totalNum = totalNum;
|
}
|
|
}
|