浏览代码

发货单显示客户确认数量变更

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@1055 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
suntg 11 年之前
父节点
当前提交
eb337f33b0
共有 1 个文件被更改,包括 19 次插入5 次删除
  1. 19 5
      src/main/java/com/uas/platform/b2b/model/SaleSendItemAll.java

+ 19 - 5
src/main/java/com/uas/platform/b2b/model/SaleSendItemAll.java

@@ -83,11 +83,17 @@ public class SaleSendItemAll {
 	@Column(name = "si_remark")
 	private String remark;
 	
+	/**
+	 * 客户确认信息
+	 */
+	@Column(name = "si_replyremark")
+	private String replyRemark;
+	
 	/**
 	 * 客户收料数
 	 */
 	@Column(name = "si_verifyqty")
-	private Double vefifyQty;
+	private Double verifyQty;
 
 	public Long getId() {
 		return id;
@@ -173,12 +179,20 @@ public class SaleSendItemAll {
 		this.orderItemId = orderItemId;
 	}
 
-	public Double getVefifyQty() {
-		return vefifyQty;
+	public String getReplyRemark() {
+		return replyRemark;
+	}
+
+	public void setReplyRemark(String replyRemark) {
+		this.replyRemark = replyRemark;
+	}
+
+	public Double getVerifyQty() {
+		return verifyQty;
 	}
 
-	public void setVefifyQty(Double vefifyQty) {
-		this.vefifyQty = vefifyQty;
+	public void setVerifyQty(Double verifyQty) {
+		this.verifyQty = verifyQty;
 	}
 
 }