广州市综治平台后端
xusd
2025-06-07 36306491396230522fa20585c2621a7fc899849a
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
package cn.huge.module.utils;
 
import cn.huge.module.sy.domain.po.SyTimeLimit;
import lombok.Data;
 
/**
 * @title: 百度地图地理编码经纬度对象
 * @description: 百度地图地理编码经纬度对象
 * @company: hugeinfo
 * @author: wangwh
 * @time: 2024-09-04 16:48:57
 * @version: 1.0.0
 * @see SyTimeLimit
 */
@Data
public class BaiduMapLngLatDTO {
 
    /**
     * 经度
     */
    String lng;
 
    /**
     * 维度
     */
    String lat;
 
}