using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application.Service.BookingSlot.Dto { public class BookingSlotCtnDto { /// /// 箱型代码 /// public string CTNCODE { get; set; } /// /// 箱型名称 /// public string CTNALL { get; set; } /// /// 箱量 /// public int CTNNUM { get; set; } /// /// 箱号 /// public string CNTRNO { get; set; } /// /// 箱封号 /// public string SEALNO { get; set; } /// /// 件数 /// public int PKGS { get; set; } /// /// 包装 /// public string KINDPKGS { get; set; } /// /// 毛重 /// public decimal KGS { get; set; } /// /// 尺码 /// public decimal CBM { get; set; } /// /// 皮重 /// public decimal TAREWEIGHT { get; set; } /// /// 箱状态 /// public string CTNSTATUS { get; set; } /// /// 称重方式 /// public string WEIGHTYPE { get; set; } /// /// 称重重量 /// public decimal WEIGHKGS { get; set; } /// /// 称重联系人 /// public string WEIGHATTN { get; set; } /// /// 总计箱量 /// public int TOTALNUM { get; set; } } /// /// 舱位箱信息保存 /// public class BookingSlotCtnSaveInput : BookingSlotCtnDto { } }