using Myshipping.Application.Entity;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 任务预甩货明细
///
[SugarTable("task_rolling_nomination_detail")]
[Description("任务预甩货明细")]
public class TaskRollingNominationDetailInfo : TaskManageDbEntity
{
///
/// 预甩船主键
///
public string NOM_SHIP_ID { get; set; }
///
/// 父主键
///
public string NOM_ID { get; set; }
///
/// 预甩状态描述
///
public string NOM_STATUS_NOTE { get; set; }
///
/// 委托客户ID
///
public Nullable CUSTOMERID { get; set; }
///
/// 委托单位名称
///
public string CUSTOMERNAME { get; set; }
///
/// 订舱ID
///
public Nullable BOOKING_ID { get; set; }
///
/// 订舱抬头
///
public string BOOKED_BY { get; set; }
///
/// 合约抬头
///
public string CONTRACTUAL_NAME { get; set; }
///
/// 提单号
///
public string SHIPMENT { get; set; }
///
/// 集装箱号
///
public string EQUIPMENT_NUMBER { get; set; }
///
/// 集装箱尺码
///
public string EQU_SIZE { get; set; }
///
/// 集装箱类型
///
public string CONTAINER_TYPE { get; set; }
///
/// 集装箱高
///
public string CONTAINER_HEIGHT { get; set; }
///
/// TEU箱量 1-40尺,0.5-20尺
///
public Nullable FEE { get; set; }
///
/// 箱型代码
///
public string CTNCODE { get; set; }
///
/// 箱型
///
public string CTNALL { get; set; }
///
/// 箱量
///
public int CTNNUM { get; set; }
///
/// 货重
///
public Nullable WEIGHT { get; set; }
///
/// 收货地
///
public string PLACEOF_RECEIPT { get; set; }
///
/// 装货港名称
///
public string LOADPORT_NAME { get; set; }
///
/// 卸货港名称
///
public string DISCHARGEPORT_NAME { get; set; }
///
/// 交货地名称
///
public string PLACEOF_DELIVERY { get; set; }
///
/// 联系邮件
///
public string BBYMAIL { get; set; }
///
/// 备注
///
public string REMARK { get; set; }
///
/// 箱量备注
///
public string CTNNOTE { get; set; }
///
/// 批次全局顺序号
///
public int SORT_NO { get; set; }
}
}