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.

101 lines
2.5 KiB
C#

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 PAGE_SUM { get; set; }
/// <summary>
/// 主单号
/// </summary>
public string MBL_NO { get; set; }
/// <summary>
/// 正本下载时间
/// </summary>
public Nullable<DateTime> ORIGINAL_DOWN_TIME { get; set; }
/// <summary>
/// 签单方式(来自订舱)
/// </summary>
public string ISSUE_TYPE { get; set; }
/// <summary>
/// 签单方式名称(来自订舱)
/// </summary>
public string ISSUE_TYPE_NAME { get; set; }
/// <summary>
/// 起始时间
/// </summary>
public Nullable<DateTime> START_DATE { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public Nullable<DateTime> END_DATE { get; set; }
/// <summary>
/// 处理结果
/// </summary>
public string RESULT_NOTE { get; set; }
/// <summary>
/// 是否超时 1-超时 0-未超时
/// </summary>
public int IS_TIMEOUT { get; set; }
/// <summary>
/// 状态 succ-成功 failure-失败 timeout-超时
/// </summary>
public string STATUS { get; set; }
/// <summary>
/// 提单纸页数
/// </summary>
public int DRAFT_NUM { get; set; }
}
}