Browse Source

公共询价报价增加备注信息

hejq 7 years ago
parent
commit
42756dad0b

+ 1 - 0
src/main/java/com/uas/ps/inquiry/entity/InquiryDetail.java

@@ -313,6 +313,7 @@ public class InquiryDetail {
         this.id_prodcode = item.getProdCode();
         this.id_currency = item.getCurrency();
         this.ve_uu = item.getVendUU();
+        this.id_remark = item.getRemark();
         if (this.id_prodcode == null && item.getProduct() != null) {
         	this.id_prodcode = item.getProduct().getCode();
 		}

+ 14 - 0
src/main/java/com/uas/ps/inquiry/model/PurcInquiry.java

@@ -187,6 +187,12 @@ public class PurcInquiry implements Serializable {
     @Column(name = "in_amount")
     private Integer amount;
 
+    /**
+     * 是否是标准 1、 是 0 否
+     */
+    @Column(name = "in_standard")
+    private Integer standard;
+
     public Long getId() {
         return id;
     }
@@ -402,4 +408,12 @@ public class PurcInquiry implements Serializable {
     public void setAmount(Integer amount) {
         this.amount = amount;
     }
+
+    public Integer getStandard() {
+        return standard;
+    }
+
+    public void setStandard(Integer standard) {
+        this.standard = standard == null ? 0 : standard;
+    }
 }