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.
BookingHeChuan/Myshipping.Application/Service/TaskManagePlat/Dtos/TaskManageOrderPOLCtnNotPic...

65 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 装货港未提箱
/// </summary>
public class TaskManageOrderPOLCtnNotPickUpInfo
{
/// <summary>
/// 船名
/// </summary>
public string Vessel { get; set; }
/// <summary>
/// 航次
/// </summary>
public string Voyno { get; set; }
/// <summary>
/// 船公司
/// </summary>
public string Carrier { get; set; }
/// <summary>
/// 订舱号
/// </summary>
public string ShipmentNumber { get; set; }
/// <summary>
/// 订舱抬头
/// </summary>
public string BookedByCustomerName { get; set; }
/// <summary>
/// 订舱参考号
/// </summary>
public string BookedByReference { get; set; }
/// <summary>
/// 合约抬头
/// </summary>
public string PriceOwnerName { get; set; }
/// <summary>
/// 批次号
/// </summary>
public string BatchNo { get; set; }
/// <summary>
/// 预甩的明细总票数
/// </summary>
public int TotalNum { get; set; }
/// <summary>
/// 预甩的明细单票总票数
/// </summary>
public int PerTotalNum { get; set; }
}
}