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.
37 lines
861 B
C#
37 lines
861 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 业务主键
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// VGM截止日期
|
|
/// </summary>
|
|
public Nullable<DateTime> VGMSubmissionCutDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 截港时间
|
|
/// </summary>
|
|
public Nullable<DateTime> CYCutDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 样单截止日期
|
|
/// </summary>
|
|
public Nullable<DateTime> SICutDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 舱单截止时间
|
|
/// </summary>
|
|
public Nullable<DateTime> ManifestCutDate { get; set; }
|
|
}
|
|
}
|