| 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 = "ApiLeaderListDto", description = "参数接收类") | 
| public class ApiLeaderListDto { | 
|   | 
|     @ApiModelProperty(value = "第几页", example = "1") | 
|     private Integer pageNum; | 
|   | 
|     @ApiModelProperty(value = "每页数量", example = "10") | 
|     private Integer pageSize; | 
|   | 
|     @ApiModelProperty(value = "团长姓名,电话,自提地址", example = "123") | 
|     private String query; | 
|   | 
|     @ApiModelProperty(value = "经度", example = "123") | 
|     @NotNull(message = "请选择您的地址") | 
|     private Double longitude; | 
|   | 
|     @ApiModelProperty(value = "纬度", example = "123") | 
|     @NotNull(message = "请选择您的地址") | 
|     private Double latitude; | 
|   | 
|     @ApiModelProperty(hidden = true) | 
|     private Double rangeSize; | 
|   | 
| } |