liurunyu
2023-12-19 6eab5ecc0a1cf8bcf1ee999457104e2281e767d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.dy.pipIrrSell.wallet;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotNull;
import lombok.*;
 
/**
 * @author ZhuBaoMin
 * @date 2023/12/11 17:28
 * @LastEditTime 2023/12/11 17:28
 * @Description
 */
 
@Data
@Builder
@ToString
@NoArgsConstructor
@AllArgsConstructor
@Schema(name = "注册电子钱包传入对象")
public class DtoWallet {
    public static final long serialVersionUID = 1L;
 
    /**
     * 农户编号
     */
    @Schema(description = "农户编号", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
    @NotNull(message = "农户编号不能为空")
    private Long clientId;
}