|
|
@@ -434,6 +434,9 @@ public class GoodsHistory {
|
|
|
@JoinColumn(name = "log_operateuu", insertable = false, updatable = false)
|
|
|
private UserBaseInfo operater;
|
|
|
|
|
|
+ @Column(name = "go_id")
|
|
|
+ private Long goid;
|
|
|
+
|
|
|
@Transient
|
|
|
private String enterpriseName;
|
|
|
|
|
|
@@ -1068,6 +1071,7 @@ public class GoodsHistory {
|
|
|
this.tag = goods.getTag();
|
|
|
this.prodNum = goods.getProdNum();
|
|
|
this.spec = goods.getSpec();
|
|
|
+ this.goid = goods.getId();
|
|
|
}
|
|
|
|
|
|
public Short getSelfDeliveryDemMinTime() {
|
|
|
@@ -1201,4 +1205,13 @@ public class GoodsHistory {
|
|
|
this.attach = attach;
|
|
|
return this;
|
|
|
}
|
|
|
+
|
|
|
+ public Long getGoid() {
|
|
|
+ return goid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public GoodsHistory setGoid(Long goid) {
|
|
|
+ this.goid = goid;
|
|
|
+ return this;
|
|
|
+ }
|
|
|
}
|