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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Text ;
using System.Threading.Tasks ;
namespace Myshipping.Application
{
/// <summary>
///
/// </summary>
public class TaskPODDischargeGateoutFullDto
{
/// <summary>
/// 主键
/// </summary>
public string PKId { get ; set ; }
/// <summary>
/// 任务主键
/// </summary>
public string TaskId { get ; set ; }
/// <summary>
/// 主单号
/// </summary>
public string MBlNo { get ; set ; }
/// <summary>
/// 船公司
/// </summary>
public string Carrier { 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 Nullable < DateTime > NoticeDate { get ; set ; }
/// <summary>
/// 订舱ID
/// </summary>
public Nullable < long > BookingId { get ; set ; }
/// <summary>
/// 已发消息提醒 1-已发 0-未发
/// </summary>
public bool IsNotice { get ; set ; }
/// <summary>
/// 消息提醒时间
/// </summary>
public Nullable < DateTime > SendNoticeDate { 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 string CurContaLocation { get ; set ; }
/// <summary>
/// 滞留费用
/// </summary>
public Nullable < decimal > DetentionFeeTillDate { get ; set ; }
/// <summary>
/// 费用币别
/// </summary>
public string ChargeCurrency { get ; set ; }
}
}