package cc.mrbird.febs.mall.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
|
@Data
|
@ApiModel(value = "ApiBalanceBuyDto", description = "参数接收类")
|
public class ApiBalanceBuyDto {
|
|
@NotNull(message = "请选择会员")
|
@ApiModelProperty(value = "会员ID", example = "123456")
|
private Long runVipId;
|
|
@NotNull(message = "请输入资金密码")
|
@ApiModelProperty(value = "资金密码", example = "123456")
|
private String tradeWord;
|
|
@NotNull(message = "请选择数量")
|
@ApiModelProperty(value = "数量", example = "123456")
|
private Integer vipCnt;
|
}
|