dashboard
repositories
filestore
activity
search
login
jagzwxm
/
ja_manage
吉安感知网项目-后端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat(utils): 添加几何数据处理和区域编码转换功能
linwei
2026-06-05
f3104f14213028277c883e19301b820ae724bd70
[jagzwxm/ja_manage.git]
/
drone-common
/
src
/
main
/
java
/
org
/
sxkj
/
common
/
geo
/
entity
/
GeoJson.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.sxkj.common.geo.entity;
import lombok.Data;
import java.util.List;
@Data
public class GeoJson {
private String type;
private Crs crs;
private List<Feature> features;
}