using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Application.Entity { /// /// 派车信息 /// [SugarTable("booking_truck")] [Description("派车信息")] public class BookingTruck : DBEntityTenant { /// /// 订舱ID /// [Description("订舱ID")] public Nullable BookingId { get; set; } /// /// 车队ID /// [Description("车队ID")] public Nullable TruckId { get; set; } /// /// 车队代码 /// [Description("车队代码")] public string TruckCode { get; set; } /// /// 车队名称 /// [Description("车队名称")] public string TruckName { get; set; } /// /// TO /// [Description("TO")] public string ToName { get; set; } /// /// ATTN /// [Description("ATTN")] public string Attn { get; set; } /// /// ATTN电话 /// [Description("ATTN电话")] public string AttnTel { get; set; } /// /// ATTN邮箱 /// [Description("ATTN邮箱")] public string AttnMail { get; set; } /// /// ATTN传真 /// [Description("ATTN传真")] public string AttnFax { get; set; } /// /// FROM /// [Description("FROM")] public string FromName { get; set; } /// /// FROM座机 /// [Description("FROM座机")] public string FromTel { get; set; } /// /// FROM邮箱 /// [Description("FROM邮箱")] public string FromMail { get; set; } /// /// FROM手机号 /// [Description("FROM手机号")] public string FromMobile { get; set; } /// /// FROM传真 /// [Description("FROM传真")] public string FromFax { get; set; } /// /// 吨数 /// [Description("吨数")] public Nullable KGS { get; set; } /// /// 陆运费 /// [Description("陆运费")] public Nullable Fee { get; set; } /// /// 支付方式 /// [Description("支付方式")] public string PayMethod { get; set; } /// /// 支付方式名称 /// [Description("支付方式名称")] public string PayMethodName { get; set; } /// /// 派车日期 /// [Description("派车日期")] public Nullable TruckTime { get; set; } /// /// 提箱场站ID /// [Description("提箱场站ID")] public string YARDID { get; set; } /// /// 提箱场站 /// [Description("提箱场站")] public string YARD { get; set; } /// /// 场站联系人 /// [Description("场站联系人")] public string YARDCONTRACT { get; set; } /// /// 场站联系人电话 /// [Description("场站联系人电话")] public string YARDCONTRACTTEL { get; set; } /// /// 工厂ID /// [Description("工厂ID")] public Nullable FactoryId { get; set; } /// /// 工厂代码 /// [Description("工厂代码")] public string FactoryCode { get; set; } /// /// 工厂名称 /// [Description("工厂名称")] public string FactoryName { get; set; } /// /// 工厂联系人 /// [Description("工厂联系人")] public string FactoryContact { get; set; } /// /// 工厂联系电话 /// [Description("工厂联系电话")] public string FactoryTel { get; set; } /// /// 返场时间 /// [Description("返场时间")] public Nullable ReturnTime { get; set; } /// /// 入货场站ID /// [Description("入货场站ID")] public string InYardID { get; set; } /// /// 入货场站 /// [Description("入货场站")] public string InYard { get; set; } /// /// 入货联系人 /// [Description("入货联系人")] public string InYardContact { get; set; } /// /// 入货联系人电话 /// [Description("入货联系人电话")] public string InYardContractTel { get; set; } /// /// 要求到达时间 /// [Description("要求到达时间")] public Nullable NeedArriveTime { get; set; } /// /// 截港日期 /// [Description("截港日期")] public Nullable ClosingTime { get; set; } /// /// 提货日期 /// [Description("提货日期")] public Nullable PickUpTime { get; set; } /// /// 是否挂机 /// [Description("是否挂机")] public bool IsGuaJi { get; set; } /// /// 状态 /// [Description("状态")] public string Status { get; set; } /// /// 注意事项 /// [Description("注意事项")] public string Attention { get; set; } /// /// 备注 /// [Description("备注")] public string Remark { get; set; } /// /// 调度ID /// [Description("调度ID")] public Nullable DispatcherId { get; set; } /// /// 调度名称 /// [Description("调度名称")] public string DispatcherName { get; set; } /// /// 派车流水号 /// [Description("派车流水号")] public string TruckFlowNo { get; set; } /// /// 任务流水号 /// [Description("任务流水号")] public string TaskNo { get; set; } /// /// 船名 /// [Description("船名")] public string Vessel { get; set; } /// /// 航次 /// [Description("航次")] public string VoyNo { get; set; } /// /// 提单号 /// [Description("提单号")] public string MBLNo { get; set; } /// /// 箱型箱量 /// [Description("箱型箱量")] public string CntrTotal { get; set; } /// /// 工厂地址 /// [Description("工厂地址")] public string FactoryAddr { get; set; } } }