jyy
2022-04-15 7883486d235deaf144d42f9964f8aa18d864161e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.matrix.system.shopXcx.api.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import javax.validation.constraints.NotBlank;
 
@ApiModel(value = "AddVipDto", description = "添加会员接收参数类")
public class ApplyToBeAnSalesmanDto {
 
    @NotBlank(message = "性别不能为空")
    @ApiModelProperty(value = "性别", example = "男/女")
    private String sex;
 
 
}