|
@@ -1,5 +1,6 @@
|
|
package com.fdkankan.ucenter.httpClient.param;
|
|
package com.fdkankan.ucenter.httpClient.param;
|
|
|
|
|
|
|
|
+import com.alibaba.nacos.shaded.org.checkerframework.checker.units.qual.A;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
@@ -13,12 +14,14 @@ public class PayOrderParam {
|
|
private String userName;
|
|
private String userName;
|
|
private String nickName;
|
|
private String nickName;
|
|
private List<PayGoods> goodsInfo;
|
|
private List<PayGoods> goodsInfo;
|
|
|
|
+ private Integer autoPay;
|
|
|
|
|
|
- public PayOrderParam(BigDecimal orderMoney, String orderType, String userName, String nickName, List<PayGoods> goodsInfo) {
|
|
|
|
|
|
+ public PayOrderParam(BigDecimal orderMoney, String orderType, String userName, String nickName, List<PayGoods> goodsInfo,Integer autoPay) {
|
|
this.orderMoney = orderMoney;
|
|
this.orderMoney = orderMoney;
|
|
this.orderType = orderType;
|
|
this.orderType = orderType;
|
|
this.userName = userName;
|
|
this.userName = userName;
|
|
this.nickName = nickName;
|
|
this.nickName = nickName;
|
|
this.goodsInfo = goodsInfo;
|
|
this.goodsInfo = goodsInfo;
|
|
|
|
+ this.autoPay = autoPay;
|
|
}
|
|
}
|
|
}
|
|
}
|