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