using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; namespace Myshipping.Application.Entity { /// /// /// [SugarTable("booking_ctn")] [Description("箱信息")] public class BookingCtn : DBEntityTenant { /// /// 单据ID /// public long? BILLID { get; set; } /// /// 箱型代码 /// [Description("箱型代码")] public string CTNCODE { get; set; } /// /// 箱型 /// [Description("箱型")] public string CTNALL { get; set; } /// /// 箱量 /// [Description("箱量")] public int? CTNNUM { get; set; } /// /// TEU /// [Description("TEU")] public int? TEU { get; set; } /// /// 箱号 /// [Description("箱号")] public string CNTRNO { get; set; } /// /// 封号 /// [Description("封号")] public string SEALNO { get; set; } /// /// 件数 /// [Description("件数")] public int? PKGS { get; set; } /// /// 包装 /// [Description("包装")] public string KINDPKGS { get; set; } /// /// 毛重 /// [Description("毛重")] public decimal? KGS { get; set; } /// /// 尺码 /// [Description("尺码")] public decimal? CBM { get; set; } /// /// 皮重 /// [Description("皮重")] public decimal? TAREWEIGHT { get; set; } /// /// 箱状态 /// [Description("箱状态")] public string CTNSTATUS { get; set; } /// /// 称重方式 /// [Description("称重方式")] public string WEIGHTYPE { get; set; } /// /// 称重重量 /// [Description("称重重量")] public decimal? WEIGHKGS { get; set; } /// /// 称重联系人 /// [Description("称重联系人")] public string WEIGHATTN { get; set; } /// /// VGM联系公司 /// [Description("VGM联系公司")] public string VGMCONNCOM { get; set; } /// /// VGM联系电话 /// [Description("VGM联系电话")] public string WEIGHTEL { get; set; } /// /// 称重日期 /// [Description("称重日期")] public string WEIGHDATE { get; set; } /// /// VGM地址 /// [Description("VGM地址")] public string VGMADDR { get; set; } /// /// VGM邮箱 /// [Description("VGM邮箱")] public string VGMEMAIL { get; set; } /// /// 备注 /// [Description("备注")] public string REMARK { get; set; } } }