sunshine
2024-11-05 00b4581009af28098da4286a8ef9f4d72c7c5728
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
49
50
51
52
53
54
55
package com.nova.sankuai.domain.api.yinsheng.response;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 快捷协议支付响应参数
 *
 * @author ephemeral
 * @date 2022/7/9 16:38
 */
@Data
@ApiModel(value = "快捷协议支付响应参数")
public class FastProtocolPayResponse extends BaseResponse {
 
    public static final String NEED_SMS = "Y";
 
    @ApiModelProperty(value = "商户系统生成的订单号")
    private String outTradeNo;
 
    @ApiModelProperty(value = "该交易在银盛支付系统中的交易流水号")
    private String tradeNo;
 
    @ApiModelProperty(value = "交易目前所处的状态")
    private String tradeStatus;
 
    @ApiModelProperty(value = "该笔订单的资金总额")
    private String totalAmount;
 
    @ApiModelProperty(value = "入账日期,格式yyyy-MM-dd")
    private String accountDate;
 
    @ApiModelProperty(value = "是否需要重新签约")
    private String needSign;
 
    @ApiModelProperty(value = "是否需要短信确认")
    private String needSmsConfirm;
 
    @ApiModelProperty(value = "支付流水")
    private String paySn;
 
    @ApiModelProperty(value = "该笔支付目前所处的状态")
    private String payStatus;
 
    @ApiModelProperty(value = "分期响应信息")
    private InstallmentResponse installmentResp;
 
    @ApiModelProperty(value = "商户贴息手续费")
    private String merDiscountFee;
 
    @ApiModelProperty(value = "消息详情")
    private String subMsg;
 
}