|
|
@@ -11,6 +11,7 @@ import com.uas.platform.b2b.support.SystemSession;
|
|
|
*/
|
|
|
public class Prod {
|
|
|
|
|
|
+ private Long pr_id;// 买方ERP物料ID
|
|
|
private String pr_code;
|
|
|
private String pr_detail;
|
|
|
private String pr_spec;
|
|
|
@@ -84,6 +85,14 @@ public class Prod {
|
|
|
this.pr_ltinstock = pr_ltinstock;
|
|
|
}
|
|
|
|
|
|
+ public Long getPr_id() {
|
|
|
+ return pr_id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPr_id(Long pr_id) {
|
|
|
+ this.pr_id = pr_id;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 转为平台的产品
|
|
|
*
|
|
|
@@ -101,6 +110,7 @@ public class Prod {
|
|
|
product.setMinOrder(this.pr_zxdhl);
|
|
|
product.setLeadtime(this.pr_leadtime);
|
|
|
product.setLtinstock(this.pr_ltinstock);
|
|
|
+ product.setSourceId(this.pr_id);
|
|
|
return product;
|
|
|
}
|
|
|
|