using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
public class BookingGenerateMergeDetailDto
{
///
/// 舱位主键
///
public long SlotId { get; set; }
///
/// 舱位提单号
///
public string BookingSlotNo { get; set; }
///
/// 舱位箱信息
///
public List CtnList { get; set; }
}
}