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