You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
323 lines
10 KiB
C#
323 lines
10 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Entity
|
|
{
|
|
/// <summary>
|
|
/// 派车信息
|
|
///</summary>
|
|
[SugarTable("task_truck", "派车信息")]
|
|
public class TaskTruck : BaseModelV2<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 任务主键ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
|
|
public long TASK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 派车主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "派车主键", IsNullable = true)]
|
|
public long? BookingTruckId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true)]
|
|
public long? BookingId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车队ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "车队ID", IsNullable = true)]
|
|
public long? TruckId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车队代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "车队代码", IsNullable = true, Length = 100)]
|
|
public string? TruckCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车队名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "车队名称", IsNullable = true, Length = 100)]
|
|
public string? TruckName { get; set; }
|
|
|
|
/// <summary>
|
|
/// TO
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "TO", IsNullable = true, Length = 100)]
|
|
public string? ToName { get; set; }
|
|
|
|
/// <summary>
|
|
/// ATTN
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "ATTN", IsNullable = true, Length = 50)]
|
|
public string? Attn { get; set; }
|
|
|
|
/// <summary>
|
|
/// ATTN电话
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "ATTN电话", IsNullable = true, Length = 50)]
|
|
public string? AttnTel { get; set; }
|
|
|
|
/// <summary>
|
|
/// ATTN邮箱
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "ATTN邮箱", IsNullable = true, Length = 100)]
|
|
public string? AttnMail { get; set; }
|
|
|
|
/// <summary>
|
|
/// ATTN传真
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "ATTN传真", IsNullable = true, Length = 50)]
|
|
public string? AttnFax { get; set; }
|
|
|
|
/// <summary>
|
|
/// FROM
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "FROM", IsNullable = true, Length = 50)]
|
|
public string? FromName { get; set; }
|
|
|
|
/// <summary>
|
|
/// FROM电话
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "FROM电话", IsNullable = true, Length = 50)]
|
|
public string? FromTel { get; set; }
|
|
|
|
/// <summary>
|
|
/// FROM邮箱
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "FROM邮箱", IsNullable = true, Length = 100)]
|
|
public string? FromMail { get; set; }
|
|
|
|
/// <summary>
|
|
/// FROM手机号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "FROM手机号", IsNullable = true, Length = 50)]
|
|
public string? FromMobile { get; set; }
|
|
|
|
/// <summary>
|
|
/// FROM传真
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "FROM传真", IsNullable = true, Length = 50)]
|
|
public string? FromFax { get; set; }
|
|
|
|
/// <summary>
|
|
/// 吨数
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "吨数", IsNullable = true, Length = 18)]
|
|
public decimal? KGS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 陆运费
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "陆运费", IsNullable = true, Length = 18)]
|
|
public decimal? Fee { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付方式
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "支付方式", IsNullable = true, Length = 100)]
|
|
public string? PayMethod { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付方式名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "支付方式名称", IsNullable = true, Length = 100)]
|
|
public string? PayMethodName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 派车日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "派车日期", IsNullable = true)]
|
|
public DateTime? TruckTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 提箱场站ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "提箱场站ID", IsNullable = true, Length = 20)]
|
|
public string? YARDID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 提箱场站
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "提箱场站", IsNullable = true, Length = 20)]
|
|
public string? YARD { get; set; }
|
|
|
|
/// <summary>
|
|
/// 场站联系人
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "场站联系人", IsNullable = true, Length = 50)]
|
|
public string? YARDCONTRACT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 场站联系人电话
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "场站联系人电话", IsNullable = true, Length = 50)]
|
|
public string? YARDCONTRACTTEL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工厂ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "工厂ID", IsNullable = true)]
|
|
public long? FactoryId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工厂代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "工厂代码", IsNullable = true, Length = 100)]
|
|
public string? FactoryCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工厂名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "工厂名称", IsNullable = true, Length = 100)]
|
|
public string? FactoryName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工厂联系人
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "工厂联系人", IsNullable = true, Length = 100)]
|
|
public string? FactoryContact { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工厂联系电话
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "工厂联系电话", IsNullable = true, Length = 100)]
|
|
public string? FactoryTel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返场时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "返场时间", IsNullable = true)]
|
|
public DateTime? ReturnTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 入货场站ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "入货场站ID", IsNullable = true, Length = 20)]
|
|
public string? InYardID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 入货场站
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "入货场站", IsNullable = true, Length = 20)]
|
|
public string? InYard { get; set; }
|
|
|
|
/// <summary>
|
|
/// 入货联系人
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "入货联系人", IsNullable = true, Length = 50)]
|
|
public string? InYardContact { get; set; }
|
|
|
|
/// <summary>
|
|
/// 入货联系人电话
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "入货联系人电话", IsNullable = true, Length = 50)]
|
|
public string? InYardContractTel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 要求到达时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "要求到达时间", IsNullable = true)]
|
|
public DateTime? NeedArriveTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 截港日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "截港日期", IsNullable = true)]
|
|
public DateTime? ClosingTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 提货日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "提货日期", IsNullable = true)]
|
|
public DateTime? PickUpTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否挂机
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "是否挂机", IsNullable = false, Length = 1)]
|
|
public UInt64 IsGuaJi { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态", IsNullable = true, Length = 50)]
|
|
public string? Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 派车流水号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "派车流水号", IsNullable = true, Length = 64)]
|
|
public string? TruckFlowNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务流水号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务流水号", IsNullable = true, Length = 64)]
|
|
public string? TaskNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 注意事项
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "注意事项", IsNullable = true, Length = 500)]
|
|
public string? Attention { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 500)]
|
|
public string? Remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 调度ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "调度ID", IsNullable = true)]
|
|
public long? DispatcherId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 调度名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "调度名称", IsNullable = true, Length = 50)]
|
|
public string? DispatcherName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船名
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "船名", IsNullable = true, Length = 30)]
|
|
public string? Vessel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 航次
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "航次", IsNullable = true, Length = 20)]
|
|
public string? VoyNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 提单号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "提单号", IsNullable = true, Length = 30)]
|
|
public string? MBLNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型箱量
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "箱型箱量", IsNullable = true, Length = 100)]
|
|
public string? CntrTotal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工厂地址
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "工厂地址", IsNullable = true, Length = 1000)]
|
|
public string? FactoryAddr { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |