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.

60 lines
1.3 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 BookingCtnVGMDto
{
/// <summary>
/// 主键
/// </summary>
public long id { get; set; }
/// <summary>
/// 箱号
/// </summary>
public string cntrNo { get; set; }
/// <summary>
/// VGM重量
/// </summary>
public Nullable<decimal> vgmWeight { get; set; }
/// <summary>
/// VGM重量单位
/// </summary>
public string vgmWeightUnit { get; set; }
/// <summary>
/// VGM称重方式
/// </summary>
public string vgmWeightMethod { get; set; }
/// <summary>
/// 是否箱号已匹配
/// </summary>
public bool isMatch { get; set; }
/// <summary>
/// 接收时间
/// </summary>
public Nullable<DateTime> recvDate { get; set; }
/// <summary>
/// 是否未提交VGM
/// </summary>
public bool isMissing { get; set; }
/// <summary>
/// 最晚提交期限
/// </summary>
public Nullable<DateTime> submissionDeadLine { get; set; }
}
}