|
|
@@ -121,6 +121,18 @@ public class PurchaseOrderTodoItem {
|
|
|
@Column(name = "pd_delivery")
|
|
|
private Date delivery;
|
|
|
|
|
|
+ /**
|
|
|
+ * 客户已验收数量
|
|
|
+ */
|
|
|
+ @Column(name = "pd_acceptqty")
|
|
|
+ private Double acceptQty;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 客户验退数量
|
|
|
+ */
|
|
|
+ @Column(name = "pd_returnqty")
|
|
|
+ private Double returnQty;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -258,4 +270,20 @@ public class PurchaseOrderTodoItem {
|
|
|
public void setStatus(Short status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
+
|
|
|
+ public Double getAcceptQty() {
|
|
|
+ return acceptQty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAcceptQty(Double acceptQty) {
|
|
|
+ this.acceptQty = acceptQty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getReturnQty() {
|
|
|
+ return returnQty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReturnQty(Double returnQty) {
|
|
|
+ this.returnQty = returnQty;
|
|
|
+ }
|
|
|
}
|