using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 海运出口EDI集装箱信息 /// public class MsOpSeaeCtnEDIBaseModel { /// /// 箱型EDI代码 M /// public string CTNALLCODE { get; set; } /// /// /// public Int32 CTNNUM { get; set; } /// /// /// public Int32 TEU { get; set; } /// /// 箱号 M /// public string CNTRNO { get; set; } /// /// 箱状态 /// public string CTNSTATUS { get; set; } /// /// 封号 M /// public string SEALNO { get; set; } /// /// 件数 M /// public Int32 PKGS { get; set; } /// /// 包装 M /// public string KINDPKGS { get; set; } /// /// 包装代码 M /// public string KINDPKGS_EDI_CODE { get; set; } /// /// 重量 M /// public decimal KGS { get; set; } /// /// 体积 M /// public decimal CBM { get; set; } /// /// 箱皮重 /// public decimal TAREWEIGHT { get; set; } /// /// 称重重量 /// public string WEIGHKGS { get; set; } /// /// 称重方式 (累加、总重) /// public string WEIGHTYPE { get; set; } /// /// 称重签名 /// public string WEIGHSIGN { get; set; } } }