using DS.Module.Core.Data; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Entity { /// /// 函电信息派车通知 /// [SqlSugar.SugarTable("op_letter_truck", " 函电信息派车通知")] public class OpLetterTruck : BaseOrgModel { /// /// LetterId /// [SugarColumn(ColumnDescription = "LetterId")] public long LetterId { get; set; } /// /// 车队Id /// [SugarColumn(ColumnDescription = "车队Id")] public long TruckId { get; set; } /// /// 陆运费 /// [SugarColumn(ColumnDescription = "陆运费", IsNullable = true, Length = 18, DecimalDigits = 3, DefaultValue = "0")] public decimal? TruckFee { get; set; } /// /// 结算方式 /// [SugarColumn(ColumnDescription = "结算方式", IsNullable = true, Length = 20)] public string PayType { get; set; } /// /// 箱型箱量 /// [SugarColumn(ColumnDescription = "箱型箱量", IsNullable = true, Length = 60)] public string CNTR { get; set; } /// /// 提箱场站 /// [SugarColumn(ColumnDescription = "YardId")] public long YardId { get; set; } /// /// 场站联系人 /// [SugarColumn(ColumnDescription = "场站联系人", IsNullable = true, Length = 200)] public string YardATTN { get; set; } /// /// 场站电话 /// [SugarColumn(ColumnDescription = "场站电话", IsNullable = true, Length = 100)] public string YardTel { get; set; } /// /// 工厂名称 /// [SugarColumn(ColumnDescription = "工厂名称", IsNullable = true, Length = 100)] public string FactoryName { get; set; } /// /// 工厂联系人 /// [SugarColumn(ColumnDescription = "工厂联系人", IsNullable = true, Length = 50)] public string FactoryATTN { get; set; } /// /// 工厂电话 /// [SugarColumn(ColumnDescription = "工厂名称", IsNullable = true, Length = 20)] public string FactoryTel { get; set; } /// /// 工厂地址 /// [SugarColumn(ColumnDescription = "工厂地址", IsNullable = true, Length = 200)] public string FactoryAddress { get; set; } /// /// 要求到厂时间 /// [SugarColumn(ColumnDescription = "要求到厂时间", IsNullable = true, Length = 60)] public string FactoryTime { get; set; } /// ///返箱场站 /// [SugarColumn(ColumnDescription = "返箱场站Id")] public long ReturnYardId { get; set; } /// /// 返箱地址 /// [SugarColumn(ColumnDescription = "返箱地址", IsNullable = true, Length = 200)] public string? Returnddress { get; set; } /// /// 返箱电话 /// [SugarColumn(ColumnDescription = "返箱电话", IsNullable = true, Length = 100)] public string ReturnTel { get; set; } /// /// 返箱联系人 /// [SugarColumn(ColumnDescription = "返箱联系人")] public long ReturnATTN { get; set; } /// /// 返厂时间 /// [SugarColumn(ColumnDescription = "返厂时间", IsNullable = true, Length = 60)] public string? ReturnYardTime { get; set; } /// /// 派车日期 /// [SugarColumn(ColumnDescription = "派车日期", IsNullable = true)] public DateTime? TruckDate { get; set; } /// /// 截港日期 /// [SugarColumn(ColumnDescription = "截港日期", IsNullable = true)] public DateTime? ClosingDate { get; set; } /// /// 提货时间 /// [SugarColumn(ColumnDescription = "提货时间", IsNullable = true)] public DateTime CargoDate { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 100)] public string Remark { get; set; } /// /// 注意事项 /// [SugarColumn(ColumnDescription = "注意事项", IsNullable = true, Length = 100)] public string TruckDetail { get; set; } /// /// 派车状态 /// [SugarColumn(ColumnDescription = "派车状态", IsNullable = true, DefaultValue ="0")] public int TruckStatus { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 100)] public string BSNO { get; set; } ///// ///// TeamType ///// //[SugarColumn(ColumnDescription = "TeamType", IsNullable = true, DefaultValue = "0")] //public int TeamType { get; set; } } }