北京经济技术开发区经开区虚拟城市项目-【后端】-服务,Poi,企业,地块等定制接口
13693261870
2023-10-05 df9ce8d356daceb0696855f3bad51676758c7e90
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.smartearth.poiexcel.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
 
/**
 * 地块实体类
 * @author WWW
 * @date 2023-10-05
 */
@Data
@AllArgsConstructor
@TableName("smart_earth.yz_dikuaixinxi")
@EqualsAndHashCode(callSuper = false)
public class PlotEntity implements Serializable {
    private static final long serialVersionUID = -8624235184539814991L;
 
    private Long id;
 
    private String name;
 
    private Double x;
 
    private Double y;
 
    private String point_area;
 
    public PlotEntity() {
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Double getX() {
        return x;
    }
 
    public void setX(Double x) {
        this.x = x;
    }
 
    public Double getY() {
        return y;
    }
 
    public void setY(Double y) {
        this.y = y;
    }
 
    public String getPoint_area() {
        return point_area;
    }
 
    public void setPoint_area(String point_area) {
        this.point_area = point_area;
    }
}