|
|
@@ -21,20 +21,20 @@ public class ProductReplace implements Serializable{
|
|
|
/**
|
|
|
* erp数据库主键id
|
|
|
*/
|
|
|
- @Column
|
|
|
+ @Column(name = "ptr_erpid")
|
|
|
private Long erpId;
|
|
|
|
|
|
/**
|
|
|
* 替代关系状态
|
|
|
* ON/OFF
|
|
|
*/
|
|
|
- @Column
|
|
|
+ @Column(name = "ptr_status")
|
|
|
private String status;
|
|
|
|
|
|
/**
|
|
|
* 下载状态
|
|
|
*/
|
|
|
- @Column
|
|
|
+ @Column(name="ptr_downstatus")
|
|
|
private String downStatus;
|
|
|
|
|
|
|
|
|
@@ -48,12 +48,12 @@ public class ProductReplace implements Serializable{
|
|
|
* 物料id
|
|
|
*/
|
|
|
@Column(name = "ptr_prid")
|
|
|
- private Long productId;
|
|
|
+ private String productId;
|
|
|
|
|
|
/***
|
|
|
* 替代料号
|
|
|
*/
|
|
|
- @Column
|
|
|
+ @Column(name = "ptr_replaceid")
|
|
|
private String replaceId;
|
|
|
|
|
|
/**
|
|
|
@@ -155,11 +155,11 @@ public class ProductReplace implements Serializable{
|
|
|
this.userUU = userUU;
|
|
|
}
|
|
|
|
|
|
- public Long getProductId() {
|
|
|
+ public String getProductId() {
|
|
|
return productId;
|
|
|
}
|
|
|
|
|
|
- public void setProductId(Long productId) {
|
|
|
+ public void setProductId(String productId) {
|
|
|
this.productId = productId;
|
|
|
}
|
|
|
|