|
@@ -1,7 +1,9 @@
|
|
|
package com.yonge.cooleshow.biz.dal.vo;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.yonge.cooleshow.biz.dal.entity.UserOrder;
|
|
|
import com.yonge.cooleshow.biz.dal.entity.UserOrderDetail;
|
|
|
+import com.yonge.cooleshow.biz.dal.enums.PayChannelEnum;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
@@ -25,6 +27,8 @@ public class UserOrderVo extends UserOrder {
|
|
|
private String username;
|
|
|
@ApiModelProperty(value = "手机号")
|
|
|
private String phone;
|
|
|
+ @ApiModelProperty("支付渠道: alipay 支付宝 wx_lite 微信 ")
|
|
|
+ private PayChannelEnum payChannel;
|
|
|
|
|
|
public List<UserOrderDetailVo> getOrderDetailList() {
|
|
|
return orderDetailList;
|
|
@@ -65,4 +69,12 @@ public class UserOrderVo extends UserOrder {
|
|
|
public void setPhone(String phone) {
|
|
|
this.phone = phone;
|
|
|
}
|
|
|
+
|
|
|
+ public PayChannelEnum getPayChannel() {
|
|
|
+ return payChannel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPayChannel(PayChannelEnum payChannel) {
|
|
|
+ this.payChannel = payChannel;
|
|
|
+ }
|
|
|
}
|