Air
2024-11-04 cb3b3801255082c53145bd752230339eae5d3e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.nova.sankuai.domain.vo;
 
import com.nova.sankuai.domain.api.liexiong.LieXiongParam;
import com.nova.sankuai.domain.api.shantai.ShanTaiPayInfo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Map;
 
/**
 * @author weikangdi
 * @create 2022/3/4
 */
@Data
@ApiModel(value = "购买会员卡参数")
public class BuyCardParamVo {
 
    @ApiModelProperty(value = "支付类型")
    private Integer payType;
 
    @ApiModelProperty(value = "系统内订单Id")
    private String partnerThirdOrderId;
 
    @ApiModelProperty(value = "烈熊支付方式参数")
    private LieXiongParam lieXiongParam;
 
    @ApiModelProperty(value = "银盛H5支付方式参数")
    private Map<String, String> yinShengParam;
 
    @ApiModelProperty(value = "支付宝支付方式参数")
    private String form;
 
    @ApiModelProperty("纬雅权益支付")
    private String weiYaUrl;
 
    @ApiModelProperty(value = "银盛快捷支付方式参数")
    private YSFastProtocolParamVo ysFastProtocolParam;
 
    @ApiModelProperty(value = "闪态快捷支付方式参数")
    private ShanTaiPayInfo stFastProtocolParam;
 
    @ApiModelProperty(value = "闪态验证方式 0为短信 1为协议")
    private Integer sTVerificationType;
 
    @ApiModelProperty(value = "宝付预支付返回唯一码")
    private String uiqueCode;
}