|
|
@@ -4,7 +4,6 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
import java.io.Serializable;
|
|
|
-import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* Created by luhg on 2018/4/26.
|
|
|
@@ -31,6 +30,10 @@ public class SaleReturnDetail implements Serializable {
|
|
|
@Column(name = "stockin_num")
|
|
|
private Double stockin_num;
|
|
|
|
|
|
+ @Column(name = "order_id")
|
|
|
+ private Long order_id;
|
|
|
+
|
|
|
+
|
|
|
public SaleReturnDetail(){}
|
|
|
|
|
|
public Long getId() {
|
|
|
@@ -64,4 +67,12 @@ public class SaleReturnDetail implements Serializable {
|
|
|
public void setStockin_num(Double stockin_num) {
|
|
|
this.stockin_num = stockin_num;
|
|
|
}
|
|
|
+
|
|
|
+ public Long getOrder_id() {
|
|
|
+ return order_id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrder_id(Long order_id) {
|
|
|
+ this.order_id = order_id;
|
|
|
+ }
|
|
|
}
|