| 1234567891011121314151617181920212223242526272829 | using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;namespace WCS.WMSWorkflow.APIModel{    public class WCSTask    {        public string WMSTaskNo { get; set; }//WMS任务号        public string StartLocation { get; set; }//起点地址        public string EndLocation { get; set; }//目标地址        public string Warehouse { get; set; }//仓库名称        public string PalletCode { get; set; }//托盘条码        public string TaskState { get; set; }//任务状态        public string StartRow { get; set; }//起点行        public string StartCol { get; set; }//起点列        public string StartLayer { get; set; }//起点层        public string EndRow { get; set; }//目标行        public string EndCol { get; set; }//目标列        public string EndLayer { get; set; }//目标层        public string StartTunnel { get; set; }//起点巷道        public string EndTunnel { get; set; }//终点巷道        public string WMSSendName { get; set; }//WMS下发人名称        public string TaskType { get; set; }//任务类型        public string Priority { get; set; }//优先级        public string SRMNo { get; set; }//堆垛机编号    }}
 |