wangxinhui
2025-11-30 f2b85c65234e0dcdd3fcce4dafbe16933b7f1b48
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.TaskInfo
{
    /// <summary>
    /// 料箱到达
    /// </summary>
    public class ContainerArriveDTO
    {
        /// <summary>
        /// 拣选工位编号
        /// </summary>
        public string SlotCode { get; set; }
        /// <summary>
        /// 料箱号
        /// </summary>
        public string ContainerCode { get; set; }
    }
    /// <summary>
    /// 料箱流动
    /// </summary>
    public class ContainerFlowDTO
    {
        /// <summary>
        /// 拣选工位编号
        /// </summary>
        public string SlotCode { get; set; }
        /// <summary>
        /// 料箱号
        /// </summary>
        public string ContainerCode { get; set; }
        /// <summary>
        /// 流动去向<br/>
        /// 100库内<br/>
        /// 200取出<br/>
        /// </summary>
        public string Direction { get; set; }
    }
    /// <summary>
    /// 料箱入库完成上报
    /// </summary>
    public class ContainerInFinishDTO
    {
        /// <summary>
        /// 任务号
        /// </summary>
        public string TaskCode { get; set; }
        /// <summary>
        /// 料箱号
        /// </summary>
        public string ContainerCode { get; set; }
        /// <summary>
        /// 起始站台
        /// </summary>
        public string FromStationCode { get; set; }
        /// <summary>
        /// 目标货位
        /// </summary>
        public string ToLocationCode { get; set; }
    }
}