using System.Text.Json.Serialization; namespace WcsMain.ApiServe.Dto.Container; /// /// 四向车请求入库任务的请求类 /// public class CreateInstoreTaskRequest { /// /// 请求ID /// [JsonPropertyName("requestId")] public string? RequestId { get; set; } /// /// 密钥 /// [JsonPropertyName("key")] public string? Key { get; set; } /// /// 载具号 /// [JsonPropertyName("palletno")] public string? PalleetNo { get; set; } /// /// 请求位置 /// [JsonPropertyName("fromcellno")] public string? FormCellNo { get; set; } }