张天森
2022-09-28 b4a814c5233885cc5df6ac76d6b8f9b5958c603c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
 
    private String appId;
}