using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
///
///
public class BookingSlotWithOrderDto
{
///
/// 舱位主键
///
public long BookingSlotId { get; set; }
///
/// 舱位对应的订舱主键组
///
public List BookingOrderList { get; set; }
///
/// 是否有对应的订舱订单
///
public bool HasBookingOrder { get; set; } = false;
}
}