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
|
| package org.springblade.modules.electronrail.vo;
|
| import lombok.Data;
| import org.springblade.modules.electronrail.entity.ElectronRail;
|
| /**
| * 电子围栏视图实体类
| * @author zhongrj
| * @since 2022-03-03
| */
| @Data
| public class ElectronRailVO extends ElectronRail {
| private static final long serialVersionUID = 1L;
|
| /**
| * 单位名称
| */
| private String companyName;
|
| /**
| * 经度
| */
| private String jd;
|
| /**
| * 纬度
| */
| private String wd;
| }
|
|