|
|
@@ -12,7 +12,7 @@ import com.uas.platform.b2b.model.PurchaseInquiryReply;
|
|
|
*/
|
|
|
public class InquiryDetailDet {
|
|
|
|
|
|
- private Long erp_idd_id;
|
|
|
+ private Long idd_id;
|
|
|
private Double idd_lapqty;
|
|
|
private Date idd_myfromdate;
|
|
|
private Date idd_mytodate;
|
|
|
@@ -24,12 +24,12 @@ public class InquiryDetailDet {
|
|
|
private Date idd_date;
|
|
|
private String idd_recorder;
|
|
|
|
|
|
- public Long getErp_idd_id() {
|
|
|
- return erp_idd_id;
|
|
|
+ public Long getIdd_id() {
|
|
|
+ return idd_id;
|
|
|
}
|
|
|
|
|
|
- public void setErp_idd_id(Long erp_idd_id) {
|
|
|
- this.erp_idd_id = erp_idd_id;
|
|
|
+ public void setIdd_id(Long idd_id) {
|
|
|
+ this.idd_id = idd_id;
|
|
|
}
|
|
|
|
|
|
public Double getIdd_lapqty() {
|
|
|
@@ -122,7 +122,7 @@ public class InquiryDetailDet {
|
|
|
reply.setLapQty(this.idd_lapqty == null ? 0 : this.idd_lapqty);
|
|
|
reply.setMyFrom(this.idd_myfromdate);
|
|
|
reply.setMyTo(this.idd_mytodate);
|
|
|
- reply.setSourceId(this.erp_idd_id);
|
|
|
+ reply.setSourceId(this.idd_id);
|
|
|
return reply;
|
|
|
}
|
|
|
|
|
|
@@ -136,7 +136,7 @@ public class InquiryDetailDet {
|
|
|
* @param reply
|
|
|
*/
|
|
|
public InquiryDetailDet(PurchaseInquiryReply reply) {
|
|
|
- this.erp_idd_id = reply.getSourceId();
|
|
|
+ this.idd_id = reply.getSourceId();
|
|
|
this.idd_fromdate = reply.getFrom();
|
|
|
this.idd_lapqty = reply.getLapQty();
|
|
|
this.idd_minbuyqty = reply.getMinOrderQty();
|