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

110 lines
2.6 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_ship")]
[Description("任务预甩货船信息")]
public class TaskRollingNominationShipInfo : TaskManageDbEntity
{
/// <summary>
/// 任务主键
/// </summary>
public string TASK_ID { get; set; }
/// <summary>
/// 父主键
/// </summary>
public string NOM_ID { get; set; }
/// <summary>
/// 船类型 From-原船,To-换船
/// </summary>
public string SHIP_TYPE { get; set; }
/// <summary>
/// 船代码
/// </summary>
public string SHIP_STRING { get; set; }
/// <summary>
/// 船名代码(船公司)
/// </summary>
public string VSL_CODE { get; set; }
/// <summary>
/// 船名
/// </summary>
public string VESSEL { get; set; }
/// <summary>
/// 航次
/// </summary>
public string VOYNO { get; set; }
/// <summary>
/// 装货港名称
/// </summary>
public string PORT { get; set; }
/// <summary>
/// 装货码头
/// </summary>
public string TERMINAL { get; set; }
/// <summary>
/// 预计离港时间
/// </summary>
public Nullable<DateTime> ETD { get; set; }
/// <summary>
/// 样单截止日期
/// </summary>
public Nullable<DateTime> SI_CUT_DATE { get; set; }
/// <summary>
/// 截港时间
/// </summary>
public Nullable<DateTime> CY_CUTOFF_TIME { get; set; }
/// <summary>
/// 截VGM时间
/// </summary>
public Nullable<DateTime> VGM_CUTOFF_TIME { get; set; }
/// <summary>
/// 截凭证时间
/// </summary>
public Nullable<DateTime> VOUCHER_CUT_DATE { get; set; }
/// <summary>
/// 截关时间
/// </summary>
public Nullable<DateTime> CLOSING_DATE { get; set; }
/// <summary>
/// 备注
/// </summary>
public string REMARK { get; set; }
/// <summary>
/// 批量换船备注
/// </summary>
public string BATCH_TRANSFER { get; set; }
/// <summary>
/// 分组KEY
/// </summary>
public int GROUP_INDX { get; set; }
}
}