using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// VGM反馈
///
public class TaskVGMFeedBackDto
{
///
/// 集装箱号
///
public string ContaNo { get; set; }
///
/// 铅封号
///
public string SealNo { get; set; }
///
/// 箱型代码
///
public string ContaType { get; set; }
///
/// 箱型
///
public string ContaTypeName { get; set; }
///
/// 重量
///
public decimal? KGS { get; set; }
///
/// 皮重
///
public decimal? TareWeight { get; set; }
///
/// 称重重量
///
public decimal? WeighKGs { get; set; }
///
/// 称重方式
///
public string WeighType { get; set; }
///
/// 主单号
///
public string MBLNo { get; set; }
}
}