1234567891011121314151617181920212223242526 |
- 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<int> Layer { get; set; }
- }
- }
|