using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
///
///
public class TaskManageOrderVGMFeedBackInfo
{
///
/// 集装箱号
///
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; }
}
}