using DS.Module.Core.Data; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Entity { /// /// 业务订单联系人信息 /// [SqlSugar.SugarTable("op_business_order_contact", "业务订单联系人信息")] public class BusinessOrderContact : BaseOrgModel { /// /// 业务Id /// [SqlSugar.SugarColumn(ColumnDescription = "业务Id", IsNullable = false, Length = 100)] public long BusinessId { get; set; } /// /// 业务类型 1.海运出口 /// [SqlSugar.SugarColumn(ColumnDescription = "业务类型 1.海运出口", IsNullable = false, DefaultValue = "1")] public BusinessType BusinessType { get; set; } = BusinessType.OceanShippingExport; /// /// 客户类别 /// [SugarColumn(ColumnDescription = "客户类别", Length = 50, IsNullable = true)] public string CustomerType { get; set; } /// /// 客户类别名称 /// [SugarColumn(ColumnDescription = "客户类别名称", Length = 50, IsNullable = true)] public string CustomerTypeName { get; set; } /// /// 客户Id /// [SugarColumn(ColumnDescription = "客户Id")] public long CustomerId { get; set; } /// /// 客户名称 /// [SugarColumn(ColumnDescription = "客户名称", Length = 100, IsNullable = true)] public string CustomerName { get; set; } /// /// 联系人 /// [SugarColumn(ColumnDescription = "联系人", Length = 50, IsNullable = true)] public string Name { get; set; } /// /// 电话 /// [SugarColumn(ColumnDescription = "电话", Length = 50, IsNullable = true)] public string Tel { get; set; } /// /// Desc:邮箱 /// [SugarColumn(ColumnDescription = "邮箱", Length = 50, IsNullable = true)] public string Email { get; set; } /// /// 联系人ID /// [SugarColumn(ColumnDescription = "联系人ID", IsNullable = true)] public long CustomerContactId { get; set; } } }