生料领料修改

This commit is contained in:
DESKTOP-J7ED0MB\yinjinlu 2022-11-15 23:35:58 +08:00
parent aa591338db
commit a7ff537fee

View File

@ -30,6 +30,18 @@ public class IssueTxBean extends BaseEntity {
/** 批次号 */ /** 批次号 */
private String batchCode; private String batchCode;
/** 供应商ID */
private Long vendorId;
/** 供应商编号 */
private String vendorCode;
/** 供应商名称 */
private String vendorName;
/** 供应商简称 */
private String vendorNick;
/** 仓库ID */ /** 仓库ID */
private Long warehouseId; private Long warehouseId;
@ -138,6 +150,38 @@ public class IssueTxBean extends BaseEntity {
this.batchCode = batchCode; this.batchCode = batchCode;
} }
public Long getVendorId() {
return vendorId;
}
public void setVendorId(Long vendorId) {
this.vendorId = vendorId;
}
public String getVendorCode() {
return vendorCode;
}
public void setVendorCode(String vendorCode) {
this.vendorCode = vendorCode;
}
public String getVendorName() {
return vendorName;
}
public void setVendorName(String vendorName) {
this.vendorName = vendorName;
}
public String getVendorNick() {
return vendorNick;
}
public void setVendorNick(String vendorNick) {
this.vendorNick = vendorNick;
}
public Long getWarehouseId() { public Long getWarehouseId() {
return warehouseId; return warehouseId;
} }
@ -276,6 +320,10 @@ public class IssueTxBean extends BaseEntity {
", specification='" + specification + '\'' + ", specification='" + specification + '\'' +
", unitOfMeasure='" + unitOfMeasure + '\'' + ", unitOfMeasure='" + unitOfMeasure + '\'' +
", batchCode='" + batchCode + '\'' + ", batchCode='" + batchCode + '\'' +
", vendorId=" + vendorId +
", vendorCode='" + vendorCode + '\'' +
", vendorName='" + vendorName + '\'' +
", vendorNick='" + vendorNick + '\'' +
", warehouseId=" + warehouseId + ", warehouseId=" + warehouseId +
", warehouseCode='" + warehouseCode + '\'' + ", warehouseCode='" + warehouseCode + '\'' +
", warehouseName='" + warehouseName + '\'' + ", warehouseName='" + warehouseName + '\'' +