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.

173 lines
5.9 KiB
C#

using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
/// <summary>
/// 任务预甩货明细
///</summary>
[SugarTable("task_rolling_nomination_detail", "任务预甩货明细")]
public class TaskRollingNominationDetail : BaseModel<long>
{
/// <summary>
/// 预甩船主键
/// </summary>
[SugarColumn(ColumnDescription = "预甩船主键", IsNullable = false ) ]
public long NomShipId { get; set; }
/// <summary>
/// 父主键
/// </summary>
[SugarColumn(ColumnDescription = "父主键", IsNullable = false ) ]
public long NomId { get; set; }
/// <summary>
/// 预甩状态描述
/// </summary>
[SugarColumn(ColumnDescription = "预甩状态描述", IsNullable = true , Length = 100 ) ]
public string? NomStatusNote { get; set; }
/// <summary>
/// 委托客户ID
/// </summary>
[SugarColumn(ColumnDescription = "委托客户ID", IsNullable = true ) ]
public long? Customerid { get; set; }
/// <summary>
/// 委托单位名称
/// </summary>
[SugarColumn(ColumnDescription = "委托单位名称", IsNullable = true , Length = 100 ) ]
public string? Customername { get; set; }
/// <summary>
/// 订舱ID
/// </summary>
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true ) ]
public long? BookingId { get; set; }
/// <summary>
/// 订舱抬头
/// </summary>
[SugarColumn(ColumnDescription = "订舱抬头", IsNullable = true , Length = 150 ) ]
public string? BookedBy { get; set; }
/// <summary>
/// 合约抬头
/// </summary>
[SugarColumn(ColumnDescription = "合约抬头", IsNullable = true , Length = 150 ) ]
public string? ContractualName { get; set; }
/// <summary>
/// 提单号
/// </summary>
[SugarColumn(ColumnDescription = "提单号", IsNullable = true , Length = 100 ) ]
public string? Shipment { get; set; }
/// <summary>
/// 集装箱号
/// </summary>
[SugarColumn(ColumnDescription = "集装箱号", IsNullable = true , Length = 64 ) ]
public string? EquipmentNumber { get; set; }
/// <summary>
/// 集装箱尺码
/// </summary>
[SugarColumn(ColumnDescription = "集装箱尺码", IsNullable = true , Length = 10 ) ]
public string? EquSize { get; set; }
/// <summary>
/// 集装箱类型
/// </summary>
[SugarColumn(ColumnDescription = "集装箱类型", IsNullable = true , Length = 10 ) ]
public string? ContainerType { get; set; }
/// <summary>
/// 集装箱高
/// </summary>
[SugarColumn(ColumnDescription = "集装箱高", IsNullable = true , Length = 10 ) ]
public string? ContainerHeight { get; set; }
/// <summary>
/// TEU箱量 1-40尺0.5-20尺
/// </summary>
[SugarColumn(ColumnDescription = "TEU箱量 1-40尺0.5-20尺", IsNullable = true , Length = 19 ) ]
public decimal? Fee { get; set; }
/// <summary>
/// 箱型代码
/// </summary>
[SugarColumn(ColumnDescription = "箱型代码", IsNullable = true , Length = 20 ) ]
public string? Ctncode { get; set; }
/// <summary>
/// 箱型
/// </summary>
[SugarColumn(ColumnDescription = "箱型", IsNullable = true , Length = 20 ) ]
public string? Ctnall { get; set; }
/// <summary>
/// 箱量
/// </summary>
[SugarColumn(ColumnDescription = "箱量", IsNullable = true ) ]
public int? Ctnnum { get; set; }
/// <summary>
/// 货重
/// </summary>
[SugarColumn(ColumnDescription = "货重", IsNullable = true , Length = 19 ) ]
public decimal? Weight { get; set; }
/// <summary>
/// 箱型备注,箱型出现翻译错误是提醒
/// </summary>
[SugarColumn(ColumnDescription = "箱型备注,箱型出现翻译错误是提醒", IsNullable = true , Length = 150 ) ]
public string? Ctnnote { get; set; }
/// <summary>
/// 收货地
/// </summary>
[SugarColumn(ColumnDescription = "收货地", IsNullable = true , Length = 100 ) ]
public string? PlaceofReceipt { get; set; }
/// <summary>
/// 装货港名称
/// </summary>
[SugarColumn(ColumnDescription = "装货港名称", IsNullable = true , Length = 100 ) ]
public string? LoadportName { get; set; }
/// <summary>
/// 卸货港名称
/// </summary>
[SugarColumn(ColumnDescription = "卸货港名称", IsNullable = true , Length = 100 ) ]
public string? DischargeportName { get; set; }
/// <summary>
/// 交货地名称
/// </summary>
[SugarColumn(ColumnDescription = "交货地名称", IsNullable = true , Length = 100 ) ]
public string? PlaceofDelivery { get; set; }
/// <summary>
/// 联系邮件
/// </summary>
[SugarColumn(ColumnDescription = "联系邮件", IsNullable = true , Length = 150 ) ]
public string? Bbymail { get; set; }
/// <summary>
/// 备注
/// </summary>
[SugarColumn(ColumnDescription = "备注", IsNullable = true , Length = 100 ) ]
public string? Remark { get; set; }
/// <summary>
/// 批次全局顺序号
/// </summary>
[SugarColumn(ColumnDescription = "批次全局顺序号", IsNullable = true ) ]
public int? SortNo { get; set; }
}
}