|
@@ -9,12 +9,6 @@ import org.codehaus.jackson.annotate.JsonIgnore;
|
|
|
import org.springframework.util.StringUtils;
|
|
import org.springframework.util.StringUtils;
|
|
|
|
|
|
|
|
import javax.persistence.*;
|
|
import javax.persistence.*;
|
|
|
-import javax.persistence.Column;
|
|
|
|
|
-import javax.persistence.Entity;
|
|
|
|
|
-import javax.persistence.GeneratedValue;
|
|
|
|
|
-import javax.persistence.Id;
|
|
|
|
|
-import javax.persistence.Table;
|
|
|
|
|
-import javax.persistence.Transient;
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
@@ -123,7 +117,7 @@ public class ReleaseProductByBatch implements Serializable {
|
|
|
/**
|
|
/**
|
|
|
* 分段报价(JSON串) eg:[{"start":0,"end":1000,"price":2.3,"taxPrice":2.5},...]
|
|
* 分段报价(JSON串) eg:[{"start":0,"end":1000,"price":2.3,"taxPrice":2.5},...]
|
|
|
*/
|
|
*/
|
|
|
- @Column(name = "rel_qtyprice")
|
|
|
|
|
|
|
+ @Column(name = "rel_qtyprice", length = 4000)
|
|
|
private String qtyPrice;
|
|
private String qtyPrice;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -159,7 +153,7 @@ public class ReleaseProductByBatch implements Serializable {
|
|
|
/**
|
|
/**
|
|
|
* 是否可拆卖
|
|
* 是否可拆卖
|
|
|
*/
|
|
*/
|
|
|
- @Column(name = "rel_breakup")
|
|
|
|
|
|
|
+ @Column(name = "rel_breakup", columnDefinition = "TINYINT(1)")
|
|
|
private Boolean breakUp;
|
|
private Boolean breakUp;
|
|
|
|
|
|
|
|
/**
|
|
/**
|