xiaoyong931011
2023-02-07 3c5d0550633c0549ac948f4e6a1b015377fa293f
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
33
34
35
36
37
38
39
40
41
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotBlank;
 
@Data
@ApiModel(value = "ApiAgentApplyDto", description = "申请代理")
public class ApiAgentApplyDto {
 
    //申请人姓名
    @NotBlank(message = "姓名不能为空")
    @ApiModelProperty(value = "姓名")
    private String name;
    //电话
    @NotBlank(message = "电话不能为空")
    @ApiModelProperty(value = "电话")
    private String phone;
    //店铺名称(非必填)
    @ApiModelProperty(value = "店铺名称(非必填)")
    private String storeName;
    //省
    @NotBlank(message = "省不能为空")
    @ApiModelProperty(value = "省")
    private String province;
    //市
    @NotBlank(message = "市不能为空")
    @ApiModelProperty(value = "市")
    private String city;
    //区、县
    @NotBlank(message = "区、县不能为空")
    @ApiModelProperty(value = "区、县")
    private String area;
    //详细地址
    @NotBlank(message = "详细地址不能为空")
    @ApiModelProperty(value = "详细地址")
    private String storeAddress;
 
}