This commit is contained in:
张良(004796)
2024-01-03 19:03:42 +08:00
parent d8bbbdf9d8
commit 34ee13959a
3 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package com.ruoyi.cai.dto;
import lombok.Data;
@Data
public class AddRechargeOrderAdminDto {
/**
* 员工ID
*/
private Long userId;
/**
* 1-充值余额 2-充值收益
*/
private Integer rechargeType;
/**
* 调整的金额
*/
private Long rechargeCoin;
}