|
|
@@ -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;
|
|
|
+ }
|
|
|
}
|