namespace Hotline.Share.Dtos;
public class Position
{
///
/// 经度
///
public double? Longitude { get; set; }
///
/// 维度
///
public double? Latitude { get; set; }
///
/// 行政区划编码
///
public string? AreaCode { get; set; }
///
/// 省
///
public string? Province { get; set; }
///
/// 市
///
public string? City { get; set; }
///
/// 区/县
///
public string? County { get; set; }
///
/// 乡镇(4级行政区划)
///
public string? Town { get; set; }
///
/// 详细街道
///
public string? Street { get; set; }
///
/// 行政区划地址
///
public string? Address { get; set; }
///
/// 完整地址
///
public string? FullAddress { get; set; }
public void InitAddress()
{
if (string.IsNullOrEmpty(Address))
{
Address = $"{Province}{City}{County}{Town}";
FullAddress = $"{Address}{Street}";
}
}
}