using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
///
///
public class BookingCtnVGMDto
{
///
/// 主键
///
public long id { get; set; }
///
/// 箱号
///
public string cntrNo { get; set; }
///
/// VGM重量
///
public Nullable vgmWeight { get; set; }
///
/// VGM重量单位
///
public string vgmWeightUnit { get; set; }
///
/// VGM称重方式
///
public string vgmWeightMethod { get; set; }
///
/// 是否箱号已匹配
///
public bool isMatch { get; set; }
///
/// 接收时间
///
public Nullable recvDate { get; set; }
///
/// 是否未提交VGM
///
public bool isMissing { get; set; }
///
/// 最晚提交期限
///
public Nullable submissionDeadLine { get; set; }
}
}