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 NPOI.SS.Formula.PTG;
|
|
|
|
|
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>
|
|
|
|
|
/// 任务LARA提单纸记录表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("task_lara_paper")]
|
|
|
|
|
[Description("任务LARA提单纸记录表")]
|
|
|
|
|
public class TaskLARAPaperInfo : TaskManageDbEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TASK_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BOOKING_ORDER_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 起始编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string NUMBER_FROM { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 结束编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string NUMBER_TO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 页数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PAGE_NUMBERS { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 页数合计
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int PARG_SUM { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 页数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MBL_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 页数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ORIGINAL_DOWN_TIME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 签单方式(来自订舱)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ISSUE_TYPE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 签单方式名称(来自订舱)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ISSUE_TYPE_NAME { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|