You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Application/Service/BookingSlot/Dto/BookingSlotWithOrderDto.cs

30 lines
668 B
C#

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