1234567891011121314151617181920212223242526 |
- using NXWMS.Model.AppModels.Condition.Common;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.AppModels.Condition.WmsTask
- {
- public class WcsAgvCmdSearchMd : DataPageMd
- {
- public string TaskNo { get; set; }
- public string CmdNo { get; set; }
- public string PalletNo { get; set; }
- public string TrayLoadedMsg { get; set; }
- public string TaskType { get; set; }
- public string TaskStatus { get; set; }
- public string AgvDevMsg { get; set; }
- public string SLocNo { get; set; }
- public string ELocNo { get; set; }
- public string SAgvLocNo { get; set; }
- public string EAgvLocNo { get; set; }
- public string StartCreateTime { get; set; }
- public string EndCreateTime { get; set; }
- }
- }
|