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.Core/Entity/DJY/DjyCustomerAddr.cs

45 lines
1.0 KiB
C#

using System;
using SqlSugar;
using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Core.Entity
{
/// <summary>
/// 客户地址
/// </summary>
[SugarTable("djy_customer_addr")]
[Description("客户地址")]
public class DjyCustomerAddr : DBEntityTenant
{
/// <summary>
/// 客户Id
/// </summary>
public long CustomerId { get; set; }
/// <summary>
/// 地址简称
/// </summary>
public string AddrName { get; set; }
/// <summary>
/// 地址详情
/// </summary>
public string Addr { get; set; }
/// <summary>
/// 地址类型 factory-工厂地址
/// </summary>
public string AddrType { get; set; }
/// <summary>
/// 联系人
/// </summary>
public string ContactName { get; set; }
/// <summary>
/// 联系电话
/// </summary>
public string ContactTel { get; set; }
}
}