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; }