xuhy
2024-11-01 fb8ad9392d5ea43deaff90b1a9bedd316037bfdc
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 com.ruoyi.common.core.vo;
 
import lombok.Data;
 
/**
 * @author HJL
 * @version 1.0
 * @since 2024-07-25 14:31
 */
@Data
public class CityInfoVO {
 
    private String city;
 
    private String code;
    private Double longitude;
    private Double latitude;
 
    public CityInfoVO() {
    }
 
    public CityInfoVO(String city, String code,Double longitude,Double latitude) {
        this.city = city;
        this.code = code;
        this.longitude = longitude;
        this.latitude = latitude;
    }
}