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.

30 lines
670 B
C#

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