33 lines
633 B
C#
33 lines
633 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Core.Service
|
|
{
|
|
public class CityDTO
|
|
{
|
|
public string Name { get; set; }
|
|
public double Lng { get; set; }
|
|
public double Lat { get; set; }
|
|
}
|
|
|
|
|
|
public class CityResponseDto
|
|
{
|
|
|
|
}
|
|
|
|
// 定义一个类来表示城市数据
|
|
public class CityData
|
|
{
|
|
public string LocationCode { get; set; }
|
|
public string CityName { get; set; }
|
|
public double Latitude { get; set; }
|
|
public double Longitude { get; set; }
|
|
}
|
|
|
|
|
|
}
|