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 System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务目的港未提货未返箱
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class TaskManageOrderPODDischargeGateoutFull
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主单号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MBlNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船公司
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Carrier { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知类型 CHARGE_FULL-卸船未提货,GATEOUT_FULL-提箱未返空箱
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string NoticeType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知类型名称 CHARGE_FULL-卸船未提货,GATEOUT_FULL-提箱未返空箱
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string NoticeTypeName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通知接收时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> NoticeDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 明细
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<TaskManageOrderPODDischargeGateoutFullDetail> DetailList { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务目的港未提货未返箱明细
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class TaskManageOrderPODDischargeGateoutFullDetail
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主单号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MBlNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CtnNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Cnee { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收货人
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> DischargeDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 卸货港
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DischargePort { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 超期天数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<int> OverdueDays { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 当前集装箱所在地
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CurContaLocation { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 滞留费用
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<decimal> DetentionFeeTillDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 费用币别
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ChargeCurrency { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|