puhanshu
2022-01-19 6d5f67ea34ecafcb5c7266bccf32c7d98e597554
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.panzhihua.common.model.dtos.community.switchs;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("搜索社区请求参数")
public class SearchCommunityDTO {
 
    @ApiModelProperty(value = "纬度", required = true)
    private String latitude;
 
    @ApiModelProperty(value = "经度", required = true)
    private String longitude;
 
    @ApiModelProperty(value = "距离(千米)", required = true)
    private Integer distance;
 
    private String areaCode;
}