jyy
2021-04-13 9a1e5d285c9e67b97c1f79bb393404a50ae6aa72
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;
 
 
}