|
@@ -19,17 +19,18 @@ public class OrderPayReq {
|
|
|
@ApiModelProperty(value = "订单号 ", required = true)
|
|
|
private String orderNo;
|
|
|
@NotNull(message = "支付渠道不能为空")
|
|
|
- @ApiModelProperty(value = "支付渠道: alipay 支付宝 wx_lite 微信 ", required = true)
|
|
|
+ @ApiModelProperty(value = "支付渠道: alipay 支付宝APP支付 alipay_lite 支付宝小程序支付 wx_lite 微信小程序支付 ", required = true)
|
|
|
private PayChannelEnum payChannel;
|
|
|
- @ApiModelProperty(value = "用户id ")
|
|
|
- private Long userId;
|
|
|
- @ApiModelProperty(value = "用户端公网ip ")
|
|
|
- private String ipAddress;
|
|
|
@ApiModelProperty(value = "微信用户openId(微信支付必传)")
|
|
|
private String openId;
|
|
|
+ @ApiModelProperty(value = "买家的支付宝用户 id(支付宝小程序支付必传)")
|
|
|
+ private String buyerId;
|
|
|
@ApiModelProperty(value = "用户说明 ")
|
|
|
private String reason;
|
|
|
|
|
|
+ private Long userId;
|
|
|
+ private String ipAddress;
|
|
|
+
|
|
|
public String getOrderNo() {
|
|
|
return orderNo;
|
|
|
}
|
|
@@ -77,4 +78,12 @@ public class OrderPayReq {
|
|
|
public void setReason(String reason) {
|
|
|
this.reason = reason;
|
|
|
}
|
|
|
+
|
|
|
+ public String getBuyerId() {
|
|
|
+ return buyerId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBuyerId(String buyerId) {
|
|
|
+ this.buyerId = buyerId;
|
|
|
+ }
|
|
|
}
|