using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.User
{
public class UserAddressGetSingleResult
{
public long Id { get; set; }
///
/// 备 注:用户id
/// 默认值:
///
[SugarColumn(ColumnName = "user_id")]
public long UserId { get; set; }
///
/// 备 注:收货人姓名
/// 默认值:
///
[SugarColumn(ColumnName = "user_name")]
public string UserName { get; set; } = null!;
///
/// 备 注:收货人电话
/// 默认值:
///
[SugarColumn(ColumnName = "user_phone")]
public string UserPhone { get; set; } = null!;
///
/// 备 注:是否默认(0否、1是) 一个人只有一个地址是默认
/// 默认值:
///
[SugarColumn(ColumnName = "is_default")]
public int IsDefault { get; set; }
///
/// 备 注:省id
/// 默认值:
///
[SugarColumn(ColumnName = "province_id")]
public int ProvinceId { get; set; }
///
/// 备 注:城市id
/// 默认值:
///
[SugarColumn(ColumnName = "city_id")]
public int CityId { get; set; }
///
/// 备 注:地区id
/// 默认值:
///
[SugarColumn(ColumnName = "region_id")]
public int RegionId { get; set; }
///
/// 备 注:详细地址
/// 默认值:
///
[SugarColumn(ColumnName = "address")]
public string Address { get; set; } = null!;
///
/// 省名称
///
public string ProvinceName { get; set; }
///
/// 城市名称
///
public string CityName { get; set; }
///
/// 地区名称
///
public string RegionName { get; set; }
}
}