kazelee
2025-05-15 1af49bdb3cdaa44a7e44ebdc843fb8180596365f
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.DSZSH.Dtos.Request {
    public class AgvRequest {
        /// <summary>
        /// HostToAGV 上报任务状态
        /// </summary>
        public class AgvTaskState {
            public int state { get; set; }
            public string task_no { get; set; }
            public string forklift_no { get; set; }
 
            /// <summary>
            /// 安全门编号
            /// </summary>
            public string lock_no { get; set; }
            public string ext_data { get; set; }
        }
 
        public class SafetyInteractionInfo {
            
            public int station_id { get; set; }
 
            /// <summary>
            /// 请求上线/下线的的站台库位名称,例如work6、work8
            /// </summary>
            public string station_name { get; set; }
 
            /// <summary>
            /// 请求码
            /// </summary>
            public string apply_code { get; set; }
            public string task_no { set; get; }
        }
    }
}