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;
|
|
}
|