|
@@ -109,9 +109,27 @@ public class PurchaseInquiryReply implements Serializable {
|
|
|
/**
|
|
/**
|
|
|
* 报价人
|
|
* 报价人
|
|
|
*/
|
|
*/
|
|
|
- @Column(name = "pr_recorder")
|
|
|
|
|
|
|
+ @Column(name = "ir_recorder")
|
|
|
private String recorder;
|
|
private String recorder;
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 是否采纳
|
|
|
|
|
+ */
|
|
|
|
|
+ @Column(name = "ir_agreed")
|
|
|
|
|
+ private Short agreed;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * (针对买家的)传输状态{待上传、已下载}
|
|
|
|
|
+ */
|
|
|
|
|
+ @Column(name = "ir_status")
|
|
|
|
|
+ private Short status;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * (针对卖家的)传输状态{待上传、已下载}
|
|
|
|
|
+ */
|
|
|
|
|
+ @Column(name = "ir_sendstatus")
|
|
|
|
|
+ private Short sendStatus;
|
|
|
|
|
+
|
|
|
public Long getId() {
|
|
public Long getId() {
|
|
|
return id;
|
|
return id;
|
|
|
}
|
|
}
|
|
@@ -218,4 +236,28 @@ public class PurchaseInquiryReply implements Serializable {
|
|
|
this.recorder = recorder;
|
|
this.recorder = recorder;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ public Short getAgreed() {
|
|
|
|
|
+ return agreed;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setAgreed(Short agreed) {
|
|
|
|
|
+ this.agreed = agreed;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Short getStatus() {
|
|
|
|
|
+ return status;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setStatus(Short status) {
|
|
|
|
|
+ this.status = status;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public Short getSendStatus() {
|
|
|
|
|
+ return sendStatus;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setSendStatus(Short sendStatus) {
|
|
|
|
|
+ this.sendStatus = sendStatus;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|