using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.Points { public class UserAddressRsp { public long Id { get; set; } = 0; /// /// 备 注:收货人姓名 /// public string UserName { get; set; } /// /// 备 注:收货人电话 /// public string UserPhone { get; set; } /// /// 备 注:是否默认(0否、1是) 一个人只有一个地址是默认 /// public int IsDefault { get; set; } /// /// 备 注:省id /// public int ProvinceId { get; set; } /// /// 备 注:城市id /// public int CityId { get; set; } /// /// 备 注:地区id /// public int RegionId { get; set; } /// /// 备 注:详细地址 /// public string Address { get; set; } } }