|
|
@@ -0,0 +1,97 @@
|
|
|
+package com.uas.eis.entity.transsion;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class SupplierSecondMaterialStockVO {
|
|
|
+
|
|
|
+ private String materialOem;
|
|
|
+ private String matOrderDate;
|
|
|
+ private String orderNumber;
|
|
|
+ private String orderItemNumber;
|
|
|
+ private String orderReqDate;
|
|
|
+ private String orderQty;
|
|
|
+ private String orderCondate;
|
|
|
+ private String orderConQty;
|
|
|
+ private String supplierRemark;
|
|
|
+
|
|
|
+ public static class Builder {
|
|
|
+ private String materialOem;
|
|
|
+ private String matOrderDate;
|
|
|
+ private String orderNumber;
|
|
|
+ private String orderItemNumber;
|
|
|
+ private String orderReqDate;
|
|
|
+ private String orderQty;
|
|
|
+ private String orderCondate;
|
|
|
+ private String orderConQty;
|
|
|
+ private String supplierRemark;
|
|
|
+
|
|
|
+ public Builder materialOem(String materialOem) {
|
|
|
+ this.materialOem = materialOem;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Builder matOrderDate(String matOrderDate) {
|
|
|
+ this.matOrderDate = matOrderDate;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Builder orderNumber(String orderNumber) {
|
|
|
+ this.orderNumber = orderNumber;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Builder orderItemNumber(String orderItemNumber) {
|
|
|
+ this.orderItemNumber = orderItemNumber;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Builder orderReqDate(String orderReqDate) {
|
|
|
+ this.orderReqDate = orderReqDate;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Builder orderQty(String orderQty) {
|
|
|
+ this.orderQty = orderQty;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Builder orderCondate(String orderCondate) {
|
|
|
+ this.orderCondate = orderCondate;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Builder orderConQty(String orderConQty) {
|
|
|
+ this.orderConQty = orderConQty;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Builder supplierRemark(String supplierRemark) {
|
|
|
+ this.supplierRemark = supplierRemark;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public SupplierSecondMaterialStockVO build() {
|
|
|
+ SupplierSecondMaterialStockVO supplierSecondMaterialStockVO = new SupplierSecondMaterialStockVO();
|
|
|
+ supplierSecondMaterialStockVO.materialOem = this.materialOem;
|
|
|
+ supplierSecondMaterialStockVO.matOrderDate = this.matOrderDate;
|
|
|
+ supplierSecondMaterialStockVO.orderNumber = this.orderNumber;
|
|
|
+ supplierSecondMaterialStockVO.orderItemNumber = this.orderItemNumber;
|
|
|
+ supplierSecondMaterialStockVO.orderReqDate = this.orderReqDate;
|
|
|
+ supplierSecondMaterialStockVO.orderQty = this.orderQty;
|
|
|
+ supplierSecondMaterialStockVO.orderCondate = this.orderCondate;
|
|
|
+ supplierSecondMaterialStockVO.orderConQty = this.orderConQty;
|
|
|
+ supplierSecondMaterialStockVO.supplierRemark = this.supplierRemark;
|
|
|
+ return supplierSecondMaterialStockVO;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Data
|
|
|
+ public static class ExtendProps {
|
|
|
+ private String key1;
|
|
|
+ private String key2;
|
|
|
+ private String key3;
|
|
|
+ private String key4;
|
|
|
+ private String key5;
|
|
|
+ }
|
|
|
+}
|