You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Application/Entity/ExpressDeliveryAddress.cs

46 lines
1.3 KiB
C#

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