using Newtonsoft.Json; namespace WcsMain.ApiClient.Shuttle.Dto; /// /// 四向车库出库移库请求 /// public class ContainerTaskResqust { /// /// 请求ID /// [JsonProperty("requestid")] public string? RequestId { get; set; } /// /// 密钥 /// [JsonProperty("key")] public string? Key { get; set; } /// /// WMS 任务号 /// [JsonProperty("wmstaskid")] public string? WmsTaskId { get; set; } /// /// 载具号 /// [JsonProperty("palletno")] public string? PalletNo { get; set; } /// /// 起始位置 /// [JsonProperty("fromcellno")] public string? FromCellNo { get; set; } /// /// 目标位置 /// [JsonProperty("tocellno")] public string? ToCell { get; set; } /// /// 任务类型 /// /// /// 2 - 出库 /// 3 - 移库 /// [JsonProperty("tasktype")] public string? TaskType { get; set; } }