using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Info { public class WcsCallBackRequest { public long TaskNo { get; set; } public int State { get; set; } } public class WcsTaskCreateRequest { public string TrayNo { get; set; } public int TaskType { get; set; } } public class AllotLocationRequest { public string TrayNo { get; set; } public int Height { get; set; } public List Layer { get; set; } } }