dashboard
repositories
filestore
activity
search
login
drone
/
drone-java
无人机java后台代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
无人机 -设备分页新增保护区ID查询条件
shenyijian
2023-11-16
bf4990ffb53e2a0e7b2ec0c7a8a054bdf8a57db5
[drone/drone-java.git]
/
src
/
main
/
java
/
com
/
dji
/
sample
/
geo
/
entity
/
GeoJson.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.dji.sample.geo.entity;
import lombok.Data;
import java.util.List;
@Data
public class GeoJson {
private String type;
private Crs crs;
private List<Feature> features;
}