package com.gkhy.safePlatform.specialWork.model.query;
|
import java.io.Serializable;
|
|
public class MaterialDetailQuery implements Serializable {
|
/**
|
* 主键
|
*/
|
private Long id;
|
/**
|
* 物资名称
|
*/
|
private String materialName;
|
/**
|
* 是否是耗材(0 是,1否)
|
*/
|
private Boolean consumables;
|
/**
|
* 默认值
|
*/
|
private Integer defaultVal;
|
/**
|
* 配置级别(0 必选,1 可选,2 高配)
|
*/
|
private Byte configurationLevel;
|
/**
|
* 物质配备基础表
|
*/
|
private Long maBaseId;
|
/**
|
* 物资类型
|
*/
|
private Byte materialType;
|
/**
|
* 物资类型名称
|
*/
|
private String materialTypeName;
|
/**
|
* 应急系统物资id
|
*/
|
private Long emergencyMaterialId;
|
|
private Byte status;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getMaterialName() {
|
return materialName;
|
}
|
|
public void setMaterialName(String materialName) {
|
this.materialName = materialName;
|
}
|
|
public Boolean getConsumables() {
|
return consumables;
|
}
|
|
public void setConsumables(Boolean consumables) {
|
this.consumables = consumables;
|
}
|
|
// public Integer getConsumables() {
|
// return consumables;
|
// }
|
//
|
// public void setConsumables(Integer consumables) {
|
// this.consumables = consumables;
|
// }
|
|
public Integer getDefaultVal() {
|
return defaultVal;
|
}
|
|
public void setDefaultVal(Integer defaultVal) {
|
this.defaultVal = defaultVal;
|
}
|
|
public Byte getConfigurationLevel() {
|
return configurationLevel;
|
}
|
|
public void setConfigurationLevel(Byte configurationLevel) {
|
this.configurationLevel = configurationLevel;
|
}
|
|
public Long getMaBaseId() {
|
return maBaseId;
|
}
|
|
public void setMaBaseId(Long maBaseId) {
|
this.maBaseId = maBaseId;
|
}
|
|
public Byte getMaterialType() {
|
return materialType;
|
}
|
|
public void setMaterialType(Byte materialType) {
|
this.materialType = materialType;
|
}
|
|
public String getMaterialTypeName() {
|
return materialTypeName;
|
}
|
|
public void setMaterialTypeName(String materialTypeName) {
|
this.materialTypeName = materialTypeName;
|
}
|
|
public Long getEmergencyMaterialId() {
|
return emergencyMaterialId;
|
}
|
|
public void setEmergencyMaterialId(Long emergencyMaterialId) {
|
this.emergencyMaterialId = emergencyMaterialId;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
}
|