dashboard
repositories
filestore
activity
search
login
admin
/
drone-java
forked from
drone/drone-java
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
SM3加密,媒体文件存储
rain
2024-06-11
6c321434d8f0bc78ae86640653eccbf4cfc2c1d3
[~admin/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;
}