leiqunqing
2026-01-23 fb24c7db81cbf7c5012e4bd0d9de588c64e30af7
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.RGV.FOURBOT
{
    /// <summary>
    /// 阻碍托盘查询请求内容DTO
    /// </summary>
    public class GetBlockPodContentDto
    {
        /// <summary>
        /// 候选托盘号列表
        /// </summary>
        public List<string> candidatePodIDs { get; set; } = new List<string>();
 
        /// <summary>
        /// 需要出库的数量
        /// 0-表示全部出
        /// 非0-表示从podIDs中取num个阻碍最少的托盘
        /// </summary>
        public int num { get; set; }
    }
 
    /// <summary>
    /// 阻碍托盘查询结果DTO
    /// </summary>
    public class GetBlockPodResultDto
    {
        /// <summary>
        /// 请求的托盘列表
        /// </summary>
        public List<string> reqPods { get; set; } = new List<string>();
 
        /// <summary>
        /// 可以出的托盘及阻碍托盘列表
        /// </summary>
        public List<object> outPods { get; set; } = new List<object>();
 
        /// <summary>
        /// 不可移动托盘列表
        /// </summary>
        public List<string> disablePods { get; set; } = new List<string>();
 
        /// <summary>
        /// 不存在的托盘列表
        /// </summary>
        public List<string> notExistPods { get; set; } = new List<string>();
    }
 
    /// <summary>
    /// 可出库托盘信息DTO
    /// </summary>
    public class OutPodInfoDto
    {
        /// <summary>
        /// 可以出的托盘号
        /// </summary>
        public string outPod { get; set; }
 
        /// <summary>
        /// 阻碍托盘列表
        /// </summary>
        public List<string> blockPods { get; set; } = new List<string>();
    }
 
}