using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Application.Entity { /// /// 舱单箱信息表 /// [SugarTable("booking_seae_edi_ctn")] [Description("舱单箱信息表")] public class BookingOrderSeaeEdiCtn : DBEntityTenant { /// /// 舱单id /// public long PId { get; set; } /// /// 尺寸 /// public string SIZE { get; set; } /// /// 表现形式 箱型 /// public string CTNALL { get; set; } /// /// 集装箱箱型 /// public string CTN { get; set; } /// /// 箱号 /// public string CNTRNO { get; set; } /// /// 封号 /// public string SEALNO { get; set; } /// /// 件数 /// public int? PKGS { get; set; } /// /// 包装EDI /// public string KINDPKGS { get; set; } /// /// 包装 /// public string KINDPKGSName { get; set; } /// /// 重量 /// public decimal? KGS { get; set; } /// /// 尺码 /// public decimal? CBM { get; set; } } }