|
|
@@ -353,10 +353,10 @@ public class Goods implements Serializable {
|
|
|
private List<GoodsQtyPrice> prices;
|
|
|
|
|
|
/**
|
|
|
- * 是否有分段价格
|
|
|
+ * 分段价格最大序号值
|
|
|
*/
|
|
|
@Transient
|
|
|
- private boolean piecewise;
|
|
|
+ private Integer maxPriceIndex;
|
|
|
|
|
|
//*************************************************************************
|
|
|
//* 价格区间信息
|
|
|
@@ -1012,14 +1012,6 @@ public class Goods implements Serializable {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public boolean isPiecewise() {
|
|
|
- return piecewise;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPiecewise(boolean piecewise) {
|
|
|
- this.piecewise = piecewise;
|
|
|
- }
|
|
|
-
|
|
|
public static long getSerialVersionUID() {
|
|
|
return serialVersionUID;
|
|
|
}
|
|
|
@@ -1235,6 +1227,14 @@ public class Goods implements Serializable {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ public Integer getMaxPriceIndex() {
|
|
|
+ return maxPriceIndex;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxPriceIndex(Integer maxPriceIndex) {
|
|
|
+ this.maxPriceIndex = maxPriceIndex;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 用人民币含税单价修改未含税人民币单价
|
|
|
*/
|