init
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
@@ -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-审核失败
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user