using Myshipping.Core.Entity; using SqlSugar; using System; using System.ComponentModel; namespace Myshipping.Application { /// /// 舱位需求预报记录 /// [SugarTable("booking_slot_demand", TableDescription = "舱位需求预报记录")] public class BookingSlotDemand : DBEntityTenant { /// /// 客户ID /// public long? CUSTOMERID { get; set; } /// /// 客户名称 /// public string CUSTOMERNAME { get; set; } /// /// 装货港代码 /// [Description("装货港代码")] public string PORTLOADID { get; set; } /// /// 装货港 /// [Description("装货港")] public string PORTLOAD { get; set; } /// /// 卸货港代码 /// [Description("卸货港代码")] public string PORTDISCHARGEID { get; set; } /// /// 卸货港 /// [Description("卸货港")] public string PORTDISCHARGE { get; set; } /// /// 船公司代号 /// [Description("船公司代号")] public string CARRIERID { get; set; } /// /// 船公司 /// [Description("船公司")] public string CARRIER { get; set; } /// /// 预计开船日期 /// [Description("预计开船日期")] public DateTime? ETD { get; set; } /// /// 预计到港日期 /// [Description("预计到港日期")] public DateTime? ETA { get; set; } /// /// 备注 /// [Description("备注")] public string REMARK { get; set; } } }