using Myshipping.Core.Entity; using SqlSugar; namespace Myshipping.Application { /// /// 舱位需求预报记录箱信息 /// [SugarTable("booking_slot_demand_ctn", TableDescription = "舱位需求预报记录箱信息")] public class BookingSlotDemandCtn : DBEntityTenant { /// /// 舱位需求预报记录ID /// public long DemandId { get; set; } /// /// 箱型代码 /// public string CTNCODE { get; set; } /// /// 箱型名称 /// public string CTNALL { get; set; } /// /// 箱量 /// public int CTNNUM { get; set; } } }