package com.whyc.dto;
|
|
/**
|
* 仓储系统-物料信息
|
*/
|
public class WmsMaterialDto {
|
|
private Integer materialId;
|
|
private String materialCode;
|
private String materialName;
|
/**物料类型 1=载具,2=电池*/
|
private Integer materialType;
|
/**物料规格*/
|
private Integer modelType;
|
/**标称容量*/
|
private String specification;
|
/**标称电压*/
|
private String unit;
|
/**品牌*/
|
private String supplier;
|
|
public Integer getMaterialId() {
|
return materialId;
|
}
|
|
public void setMaterialId(Integer materialId) {
|
this.materialId = materialId;
|
}
|
|
public String getMaterialCode() {
|
return materialCode;
|
}
|
|
public void setMaterialCode(String materialCode) {
|
this.materialCode = materialCode;
|
}
|
|
public String getMaterialName() {
|
return materialName;
|
}
|
|
public void setMaterialName(String materialName) {
|
this.materialName = materialName;
|
}
|
|
public Integer getMaterialType() {
|
return materialType;
|
}
|
|
public void setMaterialType(Integer materialType) {
|
this.materialType = materialType;
|
}
|
|
public Integer getModelType() {
|
return modelType;
|
}
|
|
public void setModelType(Integer modelType) {
|
this.modelType = modelType;
|
}
|
|
public String getSpecification() {
|
return specification;
|
}
|
|
public void setSpecification(String specification) {
|
this.specification = specification;
|
}
|
|
public String getUnit() {
|
return unit;
|
}
|
|
public void setUnit(String unit) {
|
this.unit = unit;
|
}
|
|
public String getSupplier() {
|
return supplier;
|
}
|
|
public void setSupplier(String supplier) {
|
this.supplier = supplier;
|
}
|
}
|