|
|
@@ -11,7 +11,6 @@ import com.uas.platform.b2b.model.PurchaseInquiryReply;
|
|
|
public class InquiryDetailDet {
|
|
|
|
|
|
private Long b2b_id_id;
|
|
|
- private Long idd_id;
|
|
|
private Long idd_idid;
|
|
|
private Double idd_lapqty;
|
|
|
private Double idd_price;
|
|
|
@@ -24,14 +23,6 @@ public class InquiryDetailDet {
|
|
|
this.b2b_id_id = b2b_id_id;
|
|
|
}
|
|
|
|
|
|
- public Long getIdd_id() {
|
|
|
- return idd_id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIdd_id(Long idd_id) {
|
|
|
- this.idd_id = idd_id;
|
|
|
- }
|
|
|
-
|
|
|
public Long getIdd_idid() {
|
|
|
return idd_idid;
|
|
|
}
|
|
|
@@ -64,7 +55,6 @@ public class InquiryDetailDet {
|
|
|
public PurchaseInquiryReply convert() {
|
|
|
PurchaseInquiryReply reply = new PurchaseInquiryReply();
|
|
|
reply.setLapQty(this.idd_lapqty == null ? 0 : this.idd_lapqty);
|
|
|
- reply.setSourceId(this.idd_id);
|
|
|
return reply;
|
|
|
}
|
|
|
|
|
|
@@ -79,7 +69,6 @@ public class InquiryDetailDet {
|
|
|
*/
|
|
|
public InquiryDetailDet(PurchaseInquiryReply reply) {
|
|
|
this.b2b_id_id = reply.getInquiryItem().getId();
|
|
|
- this.idd_id = reply.getSourceId();
|
|
|
this.idd_idid = reply.getInquiryItem().getSourceId();
|
|
|
this.idd_lapqty = reply.getLapQty();
|
|
|
this.idd_price = reply.getPrice();
|