using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Core.Entity { /// /// /// [SugarTable("djy_customer_contact")] [Description("客户联系人")] public class DjyCustomerContact : DBEntityTenant { /// /// 客户Id /// public long? CustomerId { get; set; } /// /// 角色ID /// public string RoleCode { get; set; } /// /// 角色名称 /// public string RoleName { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 电话 /// public string Tel { get; set; } /// /// 邮箱 /// public string Email { get; set; } /// /// QQ /// public string QQ { get; set; } /// /// 排序号 /// public int? Sort { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 客户端系统ID /// public long CustSysId { get; set; } /// /// 大简云GID /// public string DjyGid { get; set; } /// /// 船司属性 /// public string CarrierProp { get; set; } } }