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 Myshipping.Core;
|
|
|
|
|
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_pod_discharge_gateout_full")]
|
|
|
|
|
[Description("任务目的港未提货未返箱")]
|
|
|
|
|
public class TaskPODDischargeGateoutFullInfo : TaskManageDbEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TASK_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船公司
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CARRIER { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知类型 CHARGE_FULL-卸船未提货,GATEOUT_FULL-提箱未返空箱
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string NOTICE_TYPE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知类型 CHARGE_FULL-卸船未提货,GATEOUT_FULL-提箱未返空箱
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string NOTICE_TYPE_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主单号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MBL_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知接收时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> NOTICE_DATE { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|