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.
BookingHeChuan/Myshipping.Application/Entity/TaskManagePlat/TaskRollingNominationDetail...

150 lines
3.5 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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