1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package cn.iocoder.yudao.module.pay.controller.admin.wallet.vo.wallet;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| import jakarta.validation.constraints.NotNull;
|
| @Schema(description = "管理后台 - 用户钱包明细 Request VO")
| @Data
| public class PayWalletUserReqVO {
|
| @Schema(description = "用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
| @NotNull(message = "用户编号不能为空")
| private Long userId;
|
| }
|
|