using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Application.Entity { /// /// 船期信息 /// [SugarTable("vesselinfo")] [Description("船期信息")] public class DjyVesselInfo : PrimaryKeyEntity { /// /// 租户Id /// public long? TenantId { get; set; } /// /// 船名 /// public string Vessel { get; set; } /// /// 航次 /// public string Voyno { get; set; } /// /// 装货港 /// public string PortLoading { get; set; } /// /// 中转港 /// public string PortTransit { get; set; } /// /// 卸货港 /// public string PortDischarge { get; set; } /// /// 装货港ID /// public string PortLoadingId { get; set; } /// /// 装货港ID /// public string PortTransitId { get; set; } /// /// 卸货港ID /// public string PortDischargeId { get; set; } /// /// 开船日期 /// public DateTime? ETD { get; set; } /// /// 截港日期 /// public DateTime? ClosingDate { get; set; } /// /// 预抵日期 /// public DateTime? ETA { get; set; } /// /// 默认码头 /// public string Wharf { get; set; } /// /// 实际离港日期 /// public DateTime? ATD { get; set; } /// /// 船公司 /// public string CARRIER { get; set; } /// /// 船公司ID /// public string CARRIERID { get; set; } /// /// 内部航次 /// public string VoynoInside { get; set; } } }