|
@@ -11,6 +11,7 @@ public class PayGoods {
|
|
|
private Integer goodsId;
|
|
|
private Integer monthQy = 1;
|
|
|
private String nameEn;
|
|
|
+ private Integer autoPay;
|
|
|
|
|
|
public PayGoods(String name, String nameEn,Integer count,Integer type) {
|
|
|
this.name = name;
|
|
@@ -19,11 +20,12 @@ public class PayGoods {
|
|
|
this.type = type;
|
|
|
}
|
|
|
|
|
|
- public PayGoods(String name, Integer count,Integer type,Integer monthQy) {
|
|
|
+ public PayGoods(String name, Integer count,Integer type,Integer monthQy,Integer autoPay) {
|
|
|
this.name = name;
|
|
|
this.count = count;
|
|
|
this.type = type;
|
|
|
this.monthQy = monthQy;
|
|
|
+ this.autoPay = autoPay;
|
|
|
}
|
|
|
|
|
|
public PayGoods(String name, Integer count,String sceneNum,Integer type) {
|