影视会员
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
799 B

package com.cyjd.rights.dto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @author :WXC
* @Date :2023/05/16
* @description :支付宝代扣下单实体类
*/
@Data
public class AliPayInOrderByAgreementDto {
/**
* 用户支付宝签约号
*/
@ApiModelProperty(value = "用户支付宝签约号")
private String authCode;
/**
* 商户订单号
*/
@ApiModelProperty(value = "商户订单号")
private String outTradeNo;
/**
* 订单标题
*/
@ApiModelProperty(value = "订单标题")
private String subject;
/**
* 扣款金额
*/
@ApiModelProperty(value = "扣款金额")
private String totalAmount;
@ApiModelProperty(value = "用户手机号")
private String mobile;
}