|
@@ -71,6 +71,7 @@ public class Product extends DataEntity<Product> {
|
|
private String costPrice; // 成本价
|
|
private String costPrice; // 成本价
|
|
private Double SqlCostPrice;
|
|
private Double SqlCostPrice;
|
|
private String costProportional; // 比例成本百分比
|
|
private String costProportional; // 比例成本百分比
|
|
|
|
+ private Double sqlCostProportional; //入数据库字段
|
|
private String costCheckFlag; // 成本价选中标志:1固定成本 2比例成
|
|
private String costCheckFlag; // 成本价选中标志:1固定成本 2比例成
|
|
private String precisehKey; // 精确关键字
|
|
private String precisehKey; // 精确关键字
|
|
private String giftFlag;//是否可以参加赠送(0:无法参加,1:可以参加赠送,2:已参加过赠送)
|
|
private String giftFlag;//是否可以参加赠送(0:无法参加,1:可以参加赠送,2:已参加过赠送)
|
|
@@ -223,6 +224,22 @@ public class Product extends DataEntity<Product> {
|
|
*/
|
|
*/
|
|
private Integer searchType;
|
|
private Integer searchType;
|
|
|
|
|
|
|
|
+ public String getBeautyActFlag() {
|
|
|
|
+ return beautyActFlag;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBeautyActFlag(String beautyActFlag) {
|
|
|
|
+ this.beautyActFlag = beautyActFlag;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Double getSqlCostProportional() {
|
|
|
|
+ return sqlCostProportional;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSqlCostProportional(Double sqlCostProportional) {
|
|
|
|
+ this.sqlCostProportional = sqlCostProportional;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Double getSqlTaxPoint() {
|
|
public Double getSqlTaxPoint() {
|
|
return sqlTaxPoint;
|
|
return sqlTaxPoint;
|
|
}
|
|
}
|