WcsAgvCmdSearchMd.cs 878 B

1234567891011121314151617181920212223242526
  1. using NXWMS.Model.AppModels.Condition.Common;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace NXWMS.Model.AppModels.Condition.WmsTask
  8. {
  9. public class WcsAgvCmdSearchMd : DataPageMd
  10. {
  11. public string TaskNo { get; set; }
  12. public string CmdNo { get; set; }
  13. public string PalletNo { get; set; }
  14. public string TrayLoadedMsg { get; set; }
  15. public string TaskType { get; set; }
  16. public string TaskStatus { get; set; }
  17. public string AgvDevMsg { get; set; }
  18. public string SLocNo { get; set; }
  19. public string ELocNo { get; set; }
  20. public string SAgvLocNo { get; set; }
  21. public string EAgvLocNo { get; set; }
  22. public string StartCreateTime { get; set; }
  23. public string EndCreateTime { get; set; }
  24. }
  25. }