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.7 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 NOM_SHIP_ID { get; set; }
/// <summary>
/// 父主键
/// </summary>
[SugarColumn(ColumnDescription = "父主键", IsNullable = false)]
public long NOM_ID { get; set; }
/// <summary>
/// 预甩状态描述
/// </summary>
[SugarColumn(ColumnDescription = "预甩状态描述", IsNullable = true, Length = 100)]
public string? NOM_STATUS_NOTE { 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? BOOKING_ID { get; set; }
/// <summary>
/// 订舱抬头
/// </summary>
[SugarColumn(ColumnDescription = "订舱抬头", IsNullable = true, Length = 150)]
public string? BOOKED_BY { get; set; }
/// <summary>
/// 合约抬头
/// </summary>
[SugarColumn(ColumnDescription = "合约抬头", IsNullable = true, Length = 150)]
public string? CONTRACTUAL_NAME { 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? EQUIPMENT_NUMBER { get; set; }
/// <summary>
/// 集装箱尺码
/// </summary>
[SugarColumn(ColumnDescription = "集装箱尺码", IsNullable = true, Length = 10)]
public string? EQU_SIZE { get; set; }
/// <summary>
/// 集装箱类型
/// </summary>
[SugarColumn(ColumnDescription = "集装箱类型", IsNullable = true, Length = 10)]
public string? CONTAINER_TYPE { get; set; }
/// <summary>
/// 集装箱高
/// </summary>
[SugarColumn(ColumnDescription = "集装箱高", IsNullable = true, Length = 10)]
public string? CONTAINER_HEIGHT { 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? PLACEOF_RECEIPT { get; set; }
/// <summary>
/// 装货港名称
/// </summary>
[SugarColumn(ColumnDescription = "装货港名称", IsNullable = true, Length = 100)]
public string? LOADPORT_NAME { get; set; }
/// <summary>
/// 卸货港名称
/// </summary>
[SugarColumn(ColumnDescription = "卸货港名称", IsNullable = true, Length = 100)]
public string? DISCHARGEPORT_NAME { get; set; }
/// <summary>
/// 交货地名称
/// </summary>
[SugarColumn(ColumnDescription = "交货地名称", IsNullable = true, Length = 100)]
public string? PLACEOF_DELIVERY { 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? SORT_NO { get; set; }
}
}