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.

166 lines
5.5 KiB
C#

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