Merge branch 'master' of http://1.13.177.47:3000/Yangwl/lanju-cloud
commit
754833b734
@ -0,0 +1,91 @@
|
||||
package com.op.system.api.domain.sap;
|
||||
|
||||
/**
|
||||
* remark 手持入库实体类
|
||||
*
|
||||
* @author 019117
|
||||
* @date
|
||||
*/
|
||||
public class SapHandMadeInStorage {
|
||||
|
||||
/**
|
||||
* 物料描述
|
||||
*/
|
||||
private String materialDesc;
|
||||
|
||||
/**
|
||||
* 物料编码
|
||||
*/
|
||||
private String materialCode;
|
||||
|
||||
/** 批次号 **/
|
||||
private String batchCode;
|
||||
|
||||
/** 工厂号 **/
|
||||
private String factoryNo;
|
||||
|
||||
/** 仓库 **/
|
||||
private String warehouse;
|
||||
|
||||
/** 创建人 **/
|
||||
private String createBy;
|
||||
|
||||
/** 创建时间 yyyymmdd **/
|
||||
private String createTime;
|
||||
|
||||
public String getMaterialDesc() {
|
||||
return materialDesc;
|
||||
}
|
||||
|
||||
public void setMaterialDesc(String materialDesc) {
|
||||
this.materialDesc = materialDesc;
|
||||
}
|
||||
|
||||
public String getMaterialCode() {
|
||||
return materialCode;
|
||||
}
|
||||
|
||||
public void setMaterialCode(String materialCode) {
|
||||
this.materialCode = materialCode;
|
||||
}
|
||||
|
||||
public String getBatchCode() {
|
||||
return batchCode;
|
||||
}
|
||||
|
||||
public void setBatchCode(String batchCode) {
|
||||
this.batchCode = batchCode;
|
||||
}
|
||||
|
||||
public String getFactoryNo() {
|
||||
return factoryNo;
|
||||
}
|
||||
|
||||
public void setFactoryNo(String factoryNo) {
|
||||
this.factoryNo = factoryNo;
|
||||
}
|
||||
|
||||
public String getWarehouse() {
|
||||
return warehouse;
|
||||
}
|
||||
|
||||
public void setWarehouse(String warehouse) {
|
||||
this.warehouse = warehouse;
|
||||
}
|
||||
|
||||
public String getCreateBy() {
|
||||
return createBy;
|
||||
}
|
||||
|
||||
public void setCreateBy(String createBy) {
|
||||
this.createBy = createBy;
|
||||
}
|
||||
|
||||
public String getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(String createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue