using Myshipping.Core.Entity;
using SqlSugar;
using System.ComponentModel;
namespace Myshipping.Application.Entity
{
///
/// 快递发件地址簿
///
[SugarTable("express_delivery_address")]
[Description("快递发件地址簿")]
public class ExpressDeliveryAddress : DBEntityTenant
{
///
/// 类型;1:收件人信息;2:寄件人信息
///
public int Type { get; set; }
///
/// 公司名称
///
public string Company { get; set; }
///
/// 联系人姓名
///
public string People { get; set; }
///
/// 省份id
///
public string ProvinceId { get; set; }
///
/// 省份名称
///
public string Province { get; set; }
///
/// 城市名称
///
public string City { get; set; }
///
/// 详细地址
///
public string Address { get; set; }
///
/// 联系电话
///
public string Tel { get; set; }
}
}