kazelee
2025-05-16 67f74c1d68ccbb69eb8436e70018357533ef9c0a
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
using Newtonsoft.Json;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.AnGang.Dtos.Request {
    public class MoboxRequest {
 
        #region 模板数据类
 
        /// <summary>
        /// 模板数据类:标准出入库信息
        /// </summary>
        public class BaseBoundInfo {
            /// <summary>
            /// 起点货位
            /// </summary>
            public string startLoc { get; set; }
            /// <summary>
            /// 容器号
            /// </summary>
            public string cntId { get; set; }
            /// <summary>
            /// 终点货位
            /// </summary>
            public string endLoc { get; set; }
        }
 
        #endregion
        public class InboundInfo {
            /// <summary>
            /// 起点货位
            /// </summary>
            [JsonProperty("StartLoc")]
            public string startLoc { get; set; }
 
            /// <summary>
            /// 终点货架(可选)
            /// </summary>
            [JsonProperty("Nrow")]
            public string endShelf { get; set; }
        }
 
        public class SelectLocationInfo {
            public string forklift_no { get; set; }
 
            ///// <summary>
            ///// 任务号
            ///// </summary>
            //public string taskNo { get; set; }
 
            public string endLoc { get; set; }
        }
 
        /// <summary>
        /// 产品部分回库信息
        /// </summary>
        public class PartInboundInfo {
            /// <summary>
            /// 起点位置
            /// </summary>
            public string startLoc { get; set; }
 
            /// <summary>
            /// 终点位置
            /// </summary>
            public string endLoc { get; set; }
        }
 
        /// <summary>
        /// 产品部分出库信息
        /// </summary>
        public class PartOutboundInfo {
            /// <summary>
            /// 起点位置
            /// </summary>
            public string startLoc { get; set; }
 
            /// <summary>
            /// 终点位置
            /// </summary>
            public string endLoc { get; set; }
        }
 
        /// <summary>
        /// 盘点理货出库信息
        /// </summary>
        public class CheckOutboundInfo {
            /// <summary>
            /// 起点位置
            /// </summary>
            public string startLoc { get; set; }
 
            /// <summary>
            /// 终点位置
            /// </summary>
            public string endLoc { get; set; }
        }
 
        /// <summary>
        /// 盘点理货回库信息
        /// </summary>
        public class CheckInboundInfo {
            /// <summary>
            /// 起点位置
            /// </summary>
            public string startLoc { get; set; }
 
            /// <summary>
            /// 终点位置
            /// </summary>
            public string endLoc { get; set; }
        }
        
    }
}