package com.gkhy.safePlatform.specialWork.model.dto.resp;
|
|
import java.util.List;
|
|
public class MaterialClassifyRespDTO {
|
/**
|
* 物资id
|
*/
|
private Long materialId;
|
/**
|
* 物资类型名称(小类)
|
*/
|
private String materialName;
|
|
/**
|
* 配置级别
|
*/
|
private String ConfigurationLevelName;
|
/**
|
* 标准值
|
*/
|
private Integer standVal;
|
/**
|
* 该类型下的所有物资
|
*/
|
private List<MaterialStockRespDTO> msList;
|
|
public Long getMaterialId() {
|
return materialId;
|
}
|
|
public void setMaterialId(Long materialId) {
|
this.materialId = materialId;
|
}
|
|
public String getMaterialName() {
|
return materialName;
|
}
|
|
public void setMaterialName(String materialName) {
|
this.materialName = materialName;
|
}
|
|
public List<MaterialStockRespDTO> getMsList() {
|
return msList;
|
}
|
|
public void setMsList(List<MaterialStockRespDTO> msList) {
|
this.msList = msList;
|
}
|
|
public String getConfigurationLevelName() {
|
return ConfigurationLevelName;
|
}
|
|
public void setConfigurationLevelName(String configurationLevelName) {
|
ConfigurationLevelName = configurationLevelName;
|
}
|
|
public Integer getStandVal() {
|
return standVal;
|
}
|
|
public void setStandVal(Integer standVal) {
|
this.standVal = standVal;
|
}
|
}
|