using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
///
/// 引入现舱请求
///
public class BringInBookingSlotReq
{
///
/// 海运出口主键
///
public long seaExportId { get; set; }
///
/// 现舱详情列表
///
public List slots { get; set; }
}
}