更新POI

This commit is contained in:
2025-10-27 17:18:33 +08:00
parent 4b9c121513
commit fbf1804998
17 changed files with 431 additions and 45 deletions

View File

@ -0,0 +1,12 @@
package com.yj.earth.vo;
import lombok.Data;
@Data
public class PoiVo {
private Long id;
private String name;
private String address;
private String lng;
private String lat;
}