leutu
2024-08-27 c840741064966c184357f2c16f6c030ba2815568
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
42
43
44
45
package com.yb.entity;
 
import lombok.Data;
 
@Data
public class ReqEntity {
 
 
 
    /**
     地名
     */
    private String place ;
    /**
     查询类型,如: 建筑,交通设施。。
     */
    private String type ;
    /**
     * 查询半径,默认5km
     */
    private String redius = "5000" ;
 
    /**
     *查询属性长度,如:某个广场的长度
     */
    private String length;
    /**
     * 查询属性长度,如:某个广场宽度
     */
    private String  width ;
    /**
     * 查询属性长度,如:某个建筑的高度
     */
    private String  high ;
 
    /**
     * 其他属性,若是多个其他属性,使用json设置
     */
    private String  attris ;
 
    private String  x ;
    private String  y ;
 
    private String content ;
}