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.
|
|
|
|
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_change_ship_his")]
|
|
|
|
|
[Description("任务换船记录表")]
|
|
|
|
|
public class TaskChangeShipHisInfo : TaskManageDbEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务主键(父主键)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TASK_PKID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主单号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MBL_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱业务主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BOOK_ORDER_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 原船名
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VESSEL_SRC { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 变更船名
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VESSEL_TO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 原航次
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VOYNO_SRC { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 变更航次
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VOYNO_TO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 原代理
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SHIP_AGENCY_SRC { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 变更代理
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SHIP_AGENCY_TO { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|