using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
public class BookingSlotOpenEditReq
{
///
/// 业务主键
///
public long Id { get; set; }
///
/// VGM截止日期
///
public Nullable VGMSubmissionCutDate { get; set; }
///
/// 截港时间
///
public Nullable CYCutDate { get; set; }
///
/// 样单截止日期
///
public Nullable SICutDate { get; set; }
///
/// 舱单截止时间
///
public Nullable ManifestCutDate { get; set; }
}
}