|
@@ -1,9 +1,15 @@
|
|
|
package com.zkqy.amichi.domain;
|
|
|
|
|
|
+import com.alibaba.excel.annotation.write.style.ContentStyle;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.zkqy.common.annotation.Excel;
|
|
|
import com.zkqy.common.core.domain.BaseEntity;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+import java.util.StringJoiner;
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -22,6 +28,12 @@ public class MaterialRetentionLog extends BaseEntity
|
|
|
private String process;
|
|
|
|
|
|
|
|
|
+ @Excel(name = "订单号")
|
|
|
+ private String orderNumber;
|
|
|
+
|
|
|
+ @Excel(name = "生产订单号")
|
|
|
+ private String productionOrderNumber;
|
|
|
+
|
|
|
|
|
|
/** 物料编码 */
|
|
|
@Excel(name = "物料编码")
|
|
@@ -36,13 +48,13 @@ public class MaterialRetentionLog extends BaseEntity
|
|
|
private String specification;
|
|
|
|
|
|
/**流转卡序列号*/
|
|
|
- @Excel(name = "流转卡序列号")
|
|
|
+// @Excel(name = "流转卡序列号")
|
|
|
private String flowSequenceNumber;
|
|
|
|
|
|
|
|
|
|
|
|
/** 型号 */
|
|
|
- @Excel(name = "型号")
|
|
|
+// @Excel(name = "型号")
|
|
|
private String model;
|
|
|
|
|
|
/** 单位 */
|
|
@@ -64,13 +76,7 @@ public class MaterialRetentionLog extends BaseEntity
|
|
|
@Excel(name = "型号")
|
|
|
private String productModel;
|
|
|
|
|
|
- public String getProductModel() {
|
|
|
- return productModel;
|
|
|
- }
|
|
|
|
|
|
- public void setProductModel(String productModel) {
|
|
|
- this.productModel = productModel;
|
|
|
- }
|
|
|
|
|
|
@Excel(name = "规格")
|
|
|
private String productSpecification;
|
|
@@ -85,75 +91,105 @@ public class MaterialRetentionLog extends BaseEntity
|
|
|
@Excel(name = "仓库仓库编码")
|
|
|
private String ckNumber;
|
|
|
|
|
|
+
|
|
|
+ /** 创建时间 */
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "扣料时间",dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
/** 单据备注 */
|
|
|
- @Excel(name = "单据备注")
|
|
|
+// @Excel(name = "单据备注")
|
|
|
private String documentRemarks;
|
|
|
|
|
|
/** 单据类型 */
|
|
|
- @Excel(name = "单据类型")
|
|
|
+// @Excel(name = "单据类型")
|
|
|
private String documentType;
|
|
|
|
|
|
/** 库存组织 */
|
|
|
- @Excel(name = "库存组织")
|
|
|
+// @Excel(name = "库存组织")
|
|
|
private String inventoryOrganization;
|
|
|
|
|
|
/** 库存组织 */
|
|
|
- @Excel(name = "库存组织")
|
|
|
+// @Excel(name = "库存组织")
|
|
|
private String receivingTissue;
|
|
|
|
|
|
/** 库存方向 */
|
|
|
- @Excel(name = "库存方向")
|
|
|
+// @Excel(name = "库存方向")
|
|
|
private String inventoryDirection;
|
|
|
|
|
|
/** 出库日期 */
|
|
|
- @Excel(name = "出库日期")
|
|
|
+// @Excel(name = "出库日期")
|
|
|
private String dateOfDelivery;
|
|
|
|
|
|
/** 领料部门 */
|
|
|
- @Excel(name = "领料部门")
|
|
|
+// @Excel(name = "领料部门")
|
|
|
private String materialsRequisitionDepartment;
|
|
|
|
|
|
/** 领料人 */
|
|
|
- @Excel(name = "领料人")
|
|
|
+// @Excel(name = "领料人")
|
|
|
private String materialTaker;
|
|
|
|
|
|
/** 业务类型 */
|
|
|
- @Excel(name = "业务类型")
|
|
|
+// @Excel(name = "业务类型")
|
|
|
private String businessType;
|
|
|
|
|
|
/** 货主类型 */
|
|
|
- @Excel(name = "货主类型")
|
|
|
+// @Excel(name = "货主类型")
|
|
|
private String ownerType;
|
|
|
|
|
|
/** 货主 */
|
|
|
- @Excel(name = "货主")
|
|
|
+// @Excel(name = "货主")
|
|
|
private String owner;
|
|
|
|
|
|
/** 单据状态 */
|
|
|
- @Excel(name = "单据状态")
|
|
|
+// @Excel(name = "单据状态")
|
|
|
private String documentStatus;
|
|
|
|
|
|
/** 明细备注 */
|
|
|
- @Excel(name = "明细备注")
|
|
|
+// @Excel(name = "明细备注")
|
|
|
private String detailedRemarks;
|
|
|
|
|
|
/** 创建者id */
|
|
|
- @Excel(name = "创建者id ")
|
|
|
+// @Excel(name = "创建者id ")
|
|
|
private Long createById;
|
|
|
|
|
|
/** 更新者id */
|
|
|
- @Excel(name = "更新者id")
|
|
|
+// @Excel(name = "更新者id")
|
|
|
private Long updateById;
|
|
|
|
|
|
- @Excel(name = "子项类型")
|
|
|
+ // @Excel(name = "子项类型")
|
|
|
private String materialType;
|
|
|
|
|
|
+ /** 删除标志(0代表存在 2代表删除) */
|
|
|
+ private String delFlag;
|
|
|
|
|
|
- @Excel(name = "订单号")
|
|
|
- private String orderNumber;
|
|
|
+ @Override
|
|
|
+ public Date getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
|
|
|
- @Excel(name = "生产订单号")
|
|
|
- private String productionOrderNumber;
|
|
|
+ @Override
|
|
|
+ public void setCreateTime(Date createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProcess() {
|
|
|
+ return process;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProcess(String process) {
|
|
|
+ this.process = process;
|
|
|
+ }
|
|
|
|
|
|
public String getOrderNumber() {
|
|
|
return orderNumber;
|
|
@@ -171,30 +207,28 @@ public class MaterialRetentionLog extends BaseEntity
|
|
|
this.productionOrderNumber = productionOrderNumber;
|
|
|
}
|
|
|
|
|
|
- public String getMaterialType() {
|
|
|
- return materialType;
|
|
|
+ public String getMaterialCode() {
|
|
|
+ return materialCode;
|
|
|
}
|
|
|
|
|
|
- public void setMaterialType(String materialType) {
|
|
|
- this.materialType = materialType;
|
|
|
+ public void setMaterialCode(String materialCode) {
|
|
|
+ this.materialCode = materialCode;
|
|
|
}
|
|
|
|
|
|
- /** 删除标志(0代表存在 2代表删除) */
|
|
|
- private String delFlag;
|
|
|
-
|
|
|
-
|
|
|
- public String getProcess() {
|
|
|
- return process;
|
|
|
+ public String getMaterialName() {
|
|
|
+ return materialName;
|
|
|
}
|
|
|
|
|
|
- public void setProcess(String process) {
|
|
|
- this.process = process;
|
|
|
+ public void setMaterialName(String materialName) {
|
|
|
+ this.materialName = materialName;
|
|
|
}
|
|
|
- public MaterialRetentionLog(String productModel) {
|
|
|
- this.productModel = productModel;
|
|
|
+
|
|
|
+ public String getSpecification() {
|
|
|
+ return specification;
|
|
|
}
|
|
|
|
|
|
- public MaterialRetentionLog() {
|
|
|
+ public void setSpecification(String specification) {
|
|
|
+ this.specification = specification;
|
|
|
}
|
|
|
|
|
|
public String getFlowSequenceNumber() {
|
|
@@ -205,6 +239,30 @@ public class MaterialRetentionLog extends BaseEntity
|
|
|
this.flowSequenceNumber = flowSequenceNumber;
|
|
|
}
|
|
|
|
|
|
+ public String getModel() {
|
|
|
+ return model;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModel(String model) {
|
|
|
+ this.model = model;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUnit() {
|
|
|
+ return unit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUnit(String unit) {
|
|
|
+ this.unit = unit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getActualQuantityIssued() {
|
|
|
+ return actualQuantityIssued;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActualQuantityIssued(String actualQuantityIssued) {
|
|
|
+ this.actualQuantityIssued = actualQuantityIssued;
|
|
|
+ }
|
|
|
+
|
|
|
public String getProductCode() {
|
|
|
return productCode;
|
|
|
}
|
|
@@ -221,7 +279,13 @@ public class MaterialRetentionLog extends BaseEntity
|
|
|
this.productName = productName;
|
|
|
}
|
|
|
|
|
|
+ public String getProductModel() {
|
|
|
+ return productModel;
|
|
|
+ }
|
|
|
|
|
|
+ public void setProductModel(String productModel) {
|
|
|
+ this.productModel = productModel;
|
|
|
+ }
|
|
|
|
|
|
public String getProductSpecification() {
|
|
|
return productSpecification;
|
|
@@ -230,264 +294,201 @@ public class MaterialRetentionLog extends BaseEntity
|
|
|
public void setProductSpecification(String productSpecification) {
|
|
|
this.productSpecification = productSpecification;
|
|
|
}
|
|
|
- public void setId(Long id)
|
|
|
- {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getId()
|
|
|
- {
|
|
|
- return id;
|
|
|
- }
|
|
|
- public void setMaterialCode(String materialCode)
|
|
|
- {
|
|
|
- this.materialCode = materialCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getMaterialCode()
|
|
|
- {
|
|
|
- return materialCode;
|
|
|
- }
|
|
|
- public void setMaterialName(String materialName)
|
|
|
- {
|
|
|
- this.materialName = materialName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getMaterialName()
|
|
|
- {
|
|
|
- return materialName;
|
|
|
- }
|
|
|
- public void setSpecification(String specification)
|
|
|
- {
|
|
|
- this.specification = specification;
|
|
|
- }
|
|
|
|
|
|
- public String getSpecification()
|
|
|
- {
|
|
|
- return specification;
|
|
|
- }
|
|
|
- public void setModel(String model)
|
|
|
- {
|
|
|
- this.model = model;
|
|
|
- }
|
|
|
-
|
|
|
- public String getModel()
|
|
|
- {
|
|
|
- return model;
|
|
|
- }
|
|
|
- public void setUnit(String unit)
|
|
|
- {
|
|
|
- this.unit = unit;
|
|
|
- }
|
|
|
-
|
|
|
- public String getUnit()
|
|
|
- {
|
|
|
- return unit;
|
|
|
- }
|
|
|
- public void setActualQuantityIssued(String actualQuantityIssued)
|
|
|
- {
|
|
|
- this.actualQuantityIssued = actualQuantityIssued;
|
|
|
+ public String getDeliveryWarehouse() {
|
|
|
+ return deliveryWarehouse;
|
|
|
}
|
|
|
|
|
|
- public String getActualQuantityIssued()
|
|
|
- {
|
|
|
- return actualQuantityIssued;
|
|
|
- }
|
|
|
- public void setDeliveryWarehouse(String deliveryWarehouse)
|
|
|
- {
|
|
|
+ public void setDeliveryWarehouse(String deliveryWarehouse) {
|
|
|
this.deliveryWarehouse = deliveryWarehouse;
|
|
|
}
|
|
|
|
|
|
- public String getDeliveryWarehouse()
|
|
|
- {
|
|
|
- return deliveryWarehouse;
|
|
|
+ public String getCkNumber() {
|
|
|
+ return ckNumber;
|
|
|
}
|
|
|
- public void setCkNumber(String ckNumber)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setCkNumber(String ckNumber) {
|
|
|
this.ckNumber = ckNumber;
|
|
|
}
|
|
|
|
|
|
- public String getCkNumber()
|
|
|
- {
|
|
|
- return ckNumber;
|
|
|
+ public String getDocumentRemarks() {
|
|
|
+ return documentRemarks;
|
|
|
}
|
|
|
- public void setDocumentRemarks(String documentRemarks)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setDocumentRemarks(String documentRemarks) {
|
|
|
this.documentRemarks = documentRemarks;
|
|
|
}
|
|
|
|
|
|
- public String getDocumentRemarks()
|
|
|
- {
|
|
|
- return documentRemarks;
|
|
|
+ public String getDocumentType() {
|
|
|
+ return documentType;
|
|
|
}
|
|
|
- public void setDocumentType(String documentType)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setDocumentType(String documentType) {
|
|
|
this.documentType = documentType;
|
|
|
}
|
|
|
|
|
|
- public String getDocumentType()
|
|
|
- {
|
|
|
- return documentType;
|
|
|
+ public String getInventoryOrganization() {
|
|
|
+ return inventoryOrganization;
|
|
|
}
|
|
|
- public void setInventoryOrganization(String inventoryOrganization)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setInventoryOrganization(String inventoryOrganization) {
|
|
|
this.inventoryOrganization = inventoryOrganization;
|
|
|
}
|
|
|
|
|
|
- public String getInventoryOrganization()
|
|
|
- {
|
|
|
- return inventoryOrganization;
|
|
|
+ public String getReceivingTissue() {
|
|
|
+ return receivingTissue;
|
|
|
}
|
|
|
- public void setReceivingTissue(String receivingTissue)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setReceivingTissue(String receivingTissue) {
|
|
|
this.receivingTissue = receivingTissue;
|
|
|
}
|
|
|
|
|
|
- public String getReceivingTissue()
|
|
|
- {
|
|
|
- return receivingTissue;
|
|
|
+ public String getInventoryDirection() {
|
|
|
+ return inventoryDirection;
|
|
|
}
|
|
|
- public void setInventoryDirection(String inventoryDirection)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setInventoryDirection(String inventoryDirection) {
|
|
|
this.inventoryDirection = inventoryDirection;
|
|
|
}
|
|
|
|
|
|
- public String getInventoryDirection()
|
|
|
- {
|
|
|
- return inventoryDirection;
|
|
|
+ public String getDateOfDelivery() {
|
|
|
+ return dateOfDelivery;
|
|
|
}
|
|
|
- public void setDateOfDelivery(String dateOfDelivery)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setDateOfDelivery(String dateOfDelivery) {
|
|
|
this.dateOfDelivery = dateOfDelivery;
|
|
|
}
|
|
|
|
|
|
- public String getDateOfDelivery()
|
|
|
- {
|
|
|
- return dateOfDelivery;
|
|
|
+ public String getMaterialsRequisitionDepartment() {
|
|
|
+ return materialsRequisitionDepartment;
|
|
|
}
|
|
|
- public void setMaterialsRequisitionDepartment(String materialsRequisitionDepartment)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setMaterialsRequisitionDepartment(String materialsRequisitionDepartment) {
|
|
|
this.materialsRequisitionDepartment = materialsRequisitionDepartment;
|
|
|
}
|
|
|
|
|
|
- public String getMaterialsRequisitionDepartment()
|
|
|
- {
|
|
|
- return materialsRequisitionDepartment;
|
|
|
+ public String getMaterialTaker() {
|
|
|
+ return materialTaker;
|
|
|
}
|
|
|
- public void setMaterialTaker(String materialTaker)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setMaterialTaker(String materialTaker) {
|
|
|
this.materialTaker = materialTaker;
|
|
|
}
|
|
|
|
|
|
- public String getMaterialTaker()
|
|
|
- {
|
|
|
- return materialTaker;
|
|
|
+ public String getBusinessType() {
|
|
|
+ return businessType;
|
|
|
}
|
|
|
- public void setBusinessType(String businessType)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setBusinessType(String businessType) {
|
|
|
this.businessType = businessType;
|
|
|
}
|
|
|
|
|
|
- public String getBusinessType()
|
|
|
- {
|
|
|
- return businessType;
|
|
|
+ public String getOwnerType() {
|
|
|
+ return ownerType;
|
|
|
}
|
|
|
- public void setOwnerType(String ownerType)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setOwnerType(String ownerType) {
|
|
|
this.ownerType = ownerType;
|
|
|
}
|
|
|
|
|
|
- public String getOwnerType()
|
|
|
- {
|
|
|
- return ownerType;
|
|
|
+ public String getOwner() {
|
|
|
+ return owner;
|
|
|
}
|
|
|
- public void setOwner(String owner)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setOwner(String owner) {
|
|
|
this.owner = owner;
|
|
|
}
|
|
|
|
|
|
- public String getOwner()
|
|
|
- {
|
|
|
- return owner;
|
|
|
+ public String getDocumentStatus() {
|
|
|
+ return documentStatus;
|
|
|
}
|
|
|
- public void setDocumentStatus(String documentStatus)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setDocumentStatus(String documentStatus) {
|
|
|
this.documentStatus = documentStatus;
|
|
|
}
|
|
|
|
|
|
- public String getDocumentStatus()
|
|
|
- {
|
|
|
- return documentStatus;
|
|
|
+ public String getDetailedRemarks() {
|
|
|
+ return detailedRemarks;
|
|
|
}
|
|
|
- public void setDetailedRemarks(String detailedRemarks)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setDetailedRemarks(String detailedRemarks) {
|
|
|
this.detailedRemarks = detailedRemarks;
|
|
|
}
|
|
|
|
|
|
- public String getDetailedRemarks()
|
|
|
- {
|
|
|
- return detailedRemarks;
|
|
|
+ @Override
|
|
|
+ public Long getCreateById() {
|
|
|
+ return createById;
|
|
|
}
|
|
|
- public void setCreateById(Long createById)
|
|
|
- {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void setCreateById(Long createById) {
|
|
|
this.createById = createById;
|
|
|
}
|
|
|
|
|
|
- public Long getCreateById()
|
|
|
- {
|
|
|
- return createById;
|
|
|
+ @Override
|
|
|
+ public Long getUpdateById() {
|
|
|
+ return updateById;
|
|
|
}
|
|
|
- public void setUpdateById(Long updateById)
|
|
|
- {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void setUpdateById(Long updateById) {
|
|
|
this.updateById = updateById;
|
|
|
}
|
|
|
|
|
|
- public Long getUpdateById()
|
|
|
- {
|
|
|
- return updateById;
|
|
|
+ public String getMaterialType() {
|
|
|
+ return materialType;
|
|
|
}
|
|
|
- public void setDelFlag(String delFlag)
|
|
|
- {
|
|
|
- this.delFlag = delFlag;
|
|
|
+
|
|
|
+ public void setMaterialType(String materialType) {
|
|
|
+ this.materialType = materialType;
|
|
|
}
|
|
|
|
|
|
- public String getDelFlag()
|
|
|
- {
|
|
|
+ public String getDelFlag() {
|
|
|
return delFlag;
|
|
|
}
|
|
|
|
|
|
+ public void setDelFlag(String delFlag) {
|
|
|
+ this.delFlag = delFlag;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("materialCode", getMaterialCode())
|
|
|
- .append("materialName", getMaterialName())
|
|
|
- .append("specification", getSpecification())
|
|
|
- .append("model", getModel())
|
|
|
- .append("unit", getUnit())
|
|
|
- .append("actualQuantityIssued", getActualQuantityIssued())
|
|
|
- .append("deliveryWarehouse", getDeliveryWarehouse())
|
|
|
- .append("ckNumber", getCkNumber())
|
|
|
- .append("documentRemarks", getDocumentRemarks())
|
|
|
- .append("documentType", getDocumentType())
|
|
|
- .append("inventoryOrganization", getInventoryOrganization())
|
|
|
- .append("receivingTissue", getReceivingTissue())
|
|
|
- .append("inventoryDirection", getInventoryDirection())
|
|
|
- .append("dateOfDelivery", getDateOfDelivery())
|
|
|
- .append("materialsRequisitionDepartment", getMaterialsRequisitionDepartment())
|
|
|
- .append("materialTaker", getMaterialTaker())
|
|
|
- .append("businessType", getBusinessType())
|
|
|
- .append("ownerType", getOwnerType())
|
|
|
- .append("owner", getOwner())
|
|
|
- .append("documentStatus", getDocumentStatus())
|
|
|
- .append("detailedRemarks", getDetailedRemarks())
|
|
|
- .append("createById", getCreateById())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateById", getUpdateById())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .append("delFlag", getDelFlag())
|
|
|
- .toString();
|
|
|
+ return new StringJoiner(", ", MaterialRetentionLog.class.getSimpleName() + "[", "]")
|
|
|
+ .add("id=" + id)
|
|
|
+ .add("process='" + process + "'")
|
|
|
+ .add("orderNumber='" + orderNumber + "'")
|
|
|
+ .add("productionOrderNumber='" + productionOrderNumber + "'")
|
|
|
+ .add("materialCode='" + materialCode + "'")
|
|
|
+ .add("materialName='" + materialName + "'")
|
|
|
+ .add("specification='" + specification + "'")
|
|
|
+ .add("flowSequenceNumber='" + flowSequenceNumber + "'")
|
|
|
+ .add("model='" + model + "'")
|
|
|
+ .add("unit='" + unit + "'")
|
|
|
+ .add("actualQuantityIssued='" + actualQuantityIssued + "'")
|
|
|
+ .add("productCode='" + productCode + "'")
|
|
|
+ .add("productName='" + productName + "'")
|
|
|
+ .add("productModel='" + productModel + "'")
|
|
|
+ .add("productSpecification='" + productSpecification + "'")
|
|
|
+ .add("deliveryWarehouse='" + deliveryWarehouse + "'")
|
|
|
+ .add("ckNumber='" + ckNumber + "'")
|
|
|
+ .add("createTime=" + createTime)
|
|
|
+ .add("documentRemarks='" + documentRemarks + "'")
|
|
|
+ .add("documentType='" + documentType + "'")
|
|
|
+ .add("inventoryOrganization='" + inventoryOrganization + "'")
|
|
|
+ .add("receivingTissue='" + receivingTissue + "'")
|
|
|
+ .add("inventoryDirection='" + inventoryDirection + "'")
|
|
|
+ .add("dateOfDelivery='" + dateOfDelivery + "'")
|
|
|
+ .add("materialsRequisitionDepartment='" + materialsRequisitionDepartment + "'")
|
|
|
+ .add("materialTaker='" + materialTaker + "'")
|
|
|
+ .add("businessType='" + businessType + "'")
|
|
|
+ .add("ownerType='" + ownerType + "'")
|
|
|
+ .add("owner='" + owner + "'")
|
|
|
+ .add("documentStatus='" + documentStatus + "'")
|
|
|
+ .add("detailedRemarks='" + detailedRemarks + "'")
|
|
|
+ .add("createById=" + createById)
|
|
|
+ .add("updateById=" + updateById)
|
|
|
+ .add("materialType='" + materialType + "'")
|
|
|
+ .add("delFlag='" + delFlag + "'")
|
|
|
+ .toString();
|
|
|
}
|
|
|
}
|