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...

125 lines
2.9 KiB
C#

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>
/// 订舱抬头
/// </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; }
}
}