| 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; | 
|     //详细地址 | 
|     @NotBlank(message = "等级不能为空") | 
|     @ApiModelProperty(value = "合伙人等级") | 
|     private String type; | 
|   | 
| } |