using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Application.Entity { /// /// 订舱关系人 /// [SugarTable("booking_order_contact")] [Description("订舱关系人")] public class BookingOrderContact : DBEntityTenant { /// /// 订舱Id /// public long? BookingId { get; set; } /// /// 角色代码 /// public string RoleCode { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 电话 /// public string Tel { get; set; } /// /// 邮箱 /// public string Email { get; set; } /// /// 排序号 /// public int? Sort { get; set; } /// /// 备注 /// public string Remark { get; set; } } }