puzhibing
2023-10-08 22199bbdda579861736420fe26c2873ab0f5d21c
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
30
31
32
package com.sinata.rest.modular.mall.controller.body;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
import java.math.BigDecimal;
 
/**
 * <p>
 * 兑换
 * </p>
 *
 * @ClassName com.sinata.rest.modular.mall.controller.body.BodyExchange
 * @Description 兑换
 * @Author sl
 * @Date 2023/3/22 18:43
 */
@Data
@ApiModel(value = "兑换-请求")
public class BodyExchange {
 
    @NotNull
    @ApiModelProperty(value = "兑换数量")
    private BigDecimal amount;
 
    @NotNull
    @ApiModelProperty(value = "交易密码")
    private String tradePassword;
 
}