Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Points/UserAddressRsp.cs

50 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
/// <summary>
/// 备 注:收货人姓名
///</summary>
public string UserName { get; set; }
/// <summary>
/// 备 注:收货人电话
///</summary>
public string UserPhone { get; set; }
/// <summary>
/// 备 注:是否默认0否、1是 一个人只有一个地址是默认
///</summary>
public int IsDefault { get; set; }
/// <summary>
/// 备 注:省id
///</summary>
public int ProvinceId { get; set; }
/// <summary>
/// 备 注:城市id
///</summary>
public int CityId { get; set; }
/// <summary>
/// 备 注:地区id
///</summary>
public int RegionId { get; set; }
/// <summary>
/// 备 注:详细地址
///</summary>
public string Address { get; set; }
}
}