Commit ac5c7611 by unknown

Merge branch 'f-6.6.6' of 192.168.10.6:caosy/fun-common into f-6.6.6

parents 7cb03f53 447c5ed6
...@@ -90,6 +90,21 @@ public class ResourcePriceBean implements Serializable { ...@@ -90,6 +90,21 @@ public class ResourcePriceBean implements Serializable {
private Double memberPrice; private Double memberPrice;
/** /**
* vip首单立减
*/
private double vipFirstReduction;
/**
* vip随机立减最小值
*/
private double vipMinRandom;
/**
* vip随机立减最大值
*/
private double vipMaxRandom;
/**
* 会员返现 * 会员返现
*/ */
private Double memberCashRebate; private Double memberCashRebate;
...@@ -375,5 +390,29 @@ public class ResourcePriceBean implements Serializable { ...@@ -375,5 +390,29 @@ public class ResourcePriceBean implements Serializable {
this.updateUser = updateUser; this.updateUser = updateUser;
} }
public double getVipFirstReduction() {
return vipFirstReduction;
}
public double getVipMinRandom() {
return vipMinRandom;
}
public double getVipMaxRandom() {
return vipMaxRandom;
}
public void setVipFirstReduction(double vipFirstReduction) {
this.vipFirstReduction = vipFirstReduction;
}
public void setVipMinRandom(double vipMinRandom) {
this.vipMinRandom = vipMinRandom;
}
public void setVipMaxRandom(double vipMaxRandom) {
this.vipMaxRandom = vipMaxRandom;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment