using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 集装箱信息 /// public class RulesEngineOrderBookingContaInfo { /// /// 箱型代码 /// public string ContaType { get; set; } /// /// 箱型 /// public string ContaTypeName { get; set; } /// /// TEU /// public Nullable TEU { get; set; } /// /// 箱号 /// public string ContaNo { get; set; } /// /// 封号 /// public string SealNo { get; set; } /// /// 件数 /// public Nullable PKGs { get; set; } /// /// 包装 /// public string KindPKGs { get; set; } /// /// 毛重 /// public Nullable KGs { get; set; } /// /// 尺码 /// public Nullable CBM { get; set; } /// /// 皮重 /// public Nullable TareWeight { get; set; } /// /// 箱状态 /// public string ContaStatus { get; set; } /// /// 称重方式 /// public string WeighType { get; set; } /// /// 称重重量 /// public Nullable WeighKGs { get; set; } /// /// 称重联系人 /// public string WeighAttn { get; set; } /// /// VGM联系公司 /// public string VGMConnCom { get; set; } /// /// VGM联系电话 /// public string WeighTel { get; set; } /// /// 称重日期 /// public string WeighDate { get; set; } /// /// VGM地址 /// public string VGMAddr { get; set; } /// /// VGM邮箱 /// public string VGMEmail { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 大小箱分类(small-小箱 big-大箱) /// public string ContaCategory { get; set; } /// /// 货物明细 /// public List CargoList { get; set; } } }