wangxinhui
2025-04-29 95e39ae7aecd6e1016c71cf5ae70a680d8f569bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.Agv
{
    /// <summary>
    /// 成品预调度接口
    /// </summary>
    public class AgvScheduleTaskDTO
    {
        /// <summary>
        /// 预调度的位置或仓位
        /// </summary>
        public string PositionCode { get; set; }
        /// <summary>
        /// 预计真实任务多少秒下发,若达到时间未下发任务,预调度的车释放
        /// </summary>
        public string NextTask { get; set; }
        public string AgvTyp { get; set; }
        public string WaitTime { get; set; }
        public string Priority { get; set; }
        /// <summary>
        /// 单次预调度对应一个料箱,需要一个CTU仓位
        /// </summary>
        public string UseableLayers { get; set; }
        /// <summary>
        /// 单次预调度对应一个料箱
        /// </summary>
        public string CacheCount { get; set; }
        /// <summary>
        /// 不更新原有的预调度任务,累加一个新的预调度任务
        /// </summary>
        public string Update { get; set; }
        public string PreTaskQty { get; set; }
        public string ReqCode { get; set; }
        public string ReqTime { get; set; }
        public string ClientCode { get; set; }
        public string TokenCode { get; set; }
    }
}