using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// MSK API 定时订舱请求 /// public class MSKAPITimerBookingDto { /// /// 启动时间(yyyy-MM-dd HH:mm) /// public string StartTime { get; set; } /// /// 定时方案 /// public string TimerSchemeType { get; set; } /// /// 需要设定的预订舱主键组 /// public long[] ids { get; set; } } }