|
|
@@ -86,11 +86,41 @@ public class CommodityInOutbound implements Serializable {
|
|
|
private String operaterUserName;
|
|
|
|
|
|
/**
|
|
|
- * 关联单号
|
|
|
+ * 关联采购单号
|
|
|
*/
|
|
|
@Column(name = "cio_associate_orderid")
|
|
|
private String associateOrderid;
|
|
|
|
|
|
+ /**
|
|
|
+ * 关联的采购单id
|
|
|
+ */
|
|
|
+ @Column(name = "cio_associate_order_id")
|
|
|
+ private Long associateOrderId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 关联的销售单号
|
|
|
+ */
|
|
|
+ @Column(name = "cio_associate_purchaseid")
|
|
|
+ private String associatePurchaseid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 关联的销售单id
|
|
|
+ */
|
|
|
+ @Column(name = "cio_associate_purchase_id")
|
|
|
+ private String associatePurchaseId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 出货单单号
|
|
|
+ */
|
|
|
+ @Column(name = "cio_associate_invoiceid")
|
|
|
+ private String associateInvoiceid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 出货单id
|
|
|
+ */
|
|
|
+ @Column(name = "cio_associate_invoice_id")
|
|
|
+ private String associateInvoiceId;
|
|
|
+
|
|
|
/**
|
|
|
* 订单明细
|
|
|
*/
|
|
|
@@ -202,6 +232,51 @@ public class CommodityInOutbound implements Serializable {
|
|
|
this.inOutboundDetails = inOutboundDetails;
|
|
|
}
|
|
|
|
|
|
+ public Long getAssociateOrderId() {
|
|
|
+ return associateOrderId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public CommodityInOutbound setAssociateOrderId(Long associateOrderId) {
|
|
|
+ this.associateOrderId = associateOrderId;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAssociatePurchaseid() {
|
|
|
+ return associatePurchaseid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public CommodityInOutbound setAssociatePurchaseid(String associatePurchaseid) {
|
|
|
+ this.associatePurchaseid = associatePurchaseid;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAssociatePurchaseId() {
|
|
|
+ return associatePurchaseId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public CommodityInOutbound setAssociatePurchaseId(String associatePurchaseId) {
|
|
|
+ this.associatePurchaseId = associatePurchaseId;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAssociateInvoiceid() {
|
|
|
+ return associateInvoiceid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public CommodityInOutbound setAssociateInvoiceid(String associateInvoiceid) {
|
|
|
+ this.associateInvoiceid = associateInvoiceid;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAssociateInvoiceId() {
|
|
|
+ return associateInvoiceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public CommodityInOutbound setAssociateInvoiceId(String associateInvoiceId) {
|
|
|
+ this.associateInvoiceId = associateInvoiceId;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
+
|
|
|
public CommodityInOutbound() {
|
|
|
}
|
|
|
|
|
|
@@ -221,4 +296,6 @@ public class CommodityInOutbound implements Serializable {
|
|
|
this.operaterUseruu = SystemSession.getUser().getUserUU();
|
|
|
this.operaterUserName = SystemSession.getUser().getUserName();
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
}
|