This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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
/// 启动时间(yyyy-MM-dd HH:mm)
public string StartTime { get; set; }
/// 定时方案
public string TimerSchemeType { get; set; }
/// 需要设定的预订舱主键组
public long[] ids { get; set; }
}