This commit is contained in:
77
2024-04-21 01:31:10 +08:00
parent 96411407b8
commit bb3852ff76
11 changed files with 192 additions and 11 deletions

View File

@@ -0,0 +1,20 @@
package com.ruoyi.xq.dto.app.account;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
public class UpdateAliReq {
private Long userId;
/**
* 支付宝-姓名
*/
@Schema(description = "支付宝-姓名")
private String aliName;
/**
* 支付宝-账号
*/
@Schema(description = "支付宝-账户")
private String aliCard;
}

View File

@@ -0,0 +1,20 @@
package com.ruoyi.xq.dto.app.account;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
public class WithdrawReq {
@Schema(hidden = true)
private Long userId;
@Schema(description = "提现ID")
private Long id;
@Schema(description = "提现方式 1-支付宝 2-微信")
private Integer withdrawType;
@Schema(description = "支付宝-姓名")
private String aliName;
@Schema(description = "支付宝-账户")
private String aliCard;
@Schema(description = "微信-openId")
private String openId;
}

View File

@@ -31,6 +31,19 @@ public class WithdrawListAppVo {
*/
@Schema(description = "提现金额")
private BigDecimal withdrawMoney;
@Schema(description = "提现方式 1-支付宝 2-微信")
private Integer withdrawType;
/**
* 提现账户/openId
*/
@Schema(description = "提现账户/openId")
private String card;
/**
* 提现名称/微信名称
*/
@Schema(description = "提现名称/微信名称")
private String name;
/**
* 1-待审核 2-审核成功 3-审核失败
*/