diff --git a/Myshipping.Application/Entity/BookingTruck.cs b/Myshipping.Application/Entity/BookingTruck.cs
index 99423b9f..0d579e52 100644
--- a/Myshipping.Application/Entity/BookingTruck.cs
+++ b/Myshipping.Application/Entity/BookingTruck.cs
@@ -4,7 +4,207 @@ using System.ComponentModel;
using Myshipping.Core.Entity;
namespace Myshipping.Application.Entity
{
- internal class BookingTruck
+ ///
+ /// 派车信息
+ ///
+ [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; }
+ ///
+ /// FROM
+ ///
+ [Description("FROM")]
+ public string FromName { get; set; }
+ ///
+ /// FROM电话
+ ///
+ [Description("FROM电话")]
+ public string FromTel { get; set; }
+ ///
+ /// FROM邮箱
+ ///
+ [Description("FROM邮箱")]
+ public string FromMail { 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 string 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 string DispatcherId { get; set; }
+ ///
+ /// 调度名称
+ ///
+ [Description("调度名称")]
+ public string DispatcherName { get; set; }
}
}
diff --git a/Myshipping.Application/Entity/BookingTruckCtn.cs b/Myshipping.Application/Entity/BookingTruckCtn.cs
index 2463fe41..cd4f0ef7 100644
--- a/Myshipping.Application/Entity/BookingTruckCtn.cs
+++ b/Myshipping.Application/Entity/BookingTruckCtn.cs
@@ -15,5 +15,127 @@ namespace Myshipping.Application.Entity
/// 派车ID
///
public Nullable TruckId { get; set; }
+
+ ///
+ /// 箱型代码
+ ///
+ [Description("箱型代码")]
+ public string CTNCODE { get; set; }
+ ///
+ /// 箱型
+ ///
+ [Description("箱型")]
+ public string CTNALL { get; set; }
+ ///
+ /// 箱量
+ ///
+ [Description("箱量")]
+ public int? CTNNUM { get; set; }
+ ///
+ /// TEU
+ ///
+ [Description("TEU")]
+ public int? TEU { get; set; }
+ ///
+ /// 箱号
+ ///
+ [Description("箱号")]
+ public string CNTRNO { get; set; }
+ ///
+ /// 封号
+ ///
+ [Description("封号")]
+ public string SEALNO { get; set; }
+ ///
+ /// 件数
+ ///
+ [Description("件数")]
+ public int? PKGS { get; set; }
+ ///
+ /// 包装
+ ///
+ [Description("包装")]
+ public string KINDPKGS { get; set; }
+ ///
+ /// 毛重
+ ///
+ [Description("毛重")]
+ public decimal? KGS { get; set; }
+ ///
+ /// 尺码
+ ///
+ [Description("尺码")]
+ public decimal? CBM { get; set; }
+ ///
+ /// 皮重
+ ///
+ [Description("皮重")]
+ public decimal? TAREWEIGHT { get; set; }
+ ///
+ /// 箱状态
+ ///
+ [Description("箱状态")]
+ public string CTNSTATUS { get; set; }
+ ///
+ /// 称重方式
+ ///
+ [Description("称重方式")]
+ public string WEIGHTYPE { get; set; }
+ ///
+ /// 称重重量
+ ///
+ [Description("称重重量")]
+ public decimal? WEIGHKGS { get; set; }
+ ///
+ /// 称重联系人
+ ///
+ [Description("称重联系人")]
+ public string WEIGHATTN { get; set; }
+ ///
+ /// VGM联系公司
+ ///
+ [Description("VGM联系公司")]
+ public string VGMCONNCOM { get; set; }
+ ///
+ /// VGM联系电话
+ ///
+ [Description("VGM联系电话")]
+ public string WEIGHTEL { get; set; }
+ ///
+ /// 称重日期
+ ///
+ [Description("称重日期")]
+ public string WEIGHDATE { get; set; }
+ ///
+ /// VGM地址
+ ///
+ [Description("VGM地址")]
+ public string VGMADDR { get; set; }
+ ///
+ /// VGM邮箱
+ ///
+ [Description("VGM邮箱")]
+ public string VGMEMAIL { get; set; }
+ ///
+ /// 车牌号
+ ///
+ [Description("车牌号")]
+ public string CarNumber { get; set; }
+ ///
+ /// 司机
+ ///
+ [Description("司机")]
+ public string CarDriver { get; set; }
+ ///
+ /// 司机电话
+ ///
+ [Description("司机电话")]
+ public string CarDriverTel { get; set; }
+ ///
+ /// 备注
+ ///
+ [Description("备注")]
+ public string REMARK { get; set; }
+
}
}