yanjinhui
2026-03-31 0128fce75a5e7cc9afc4bd89ce1966eb2231b69f
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
using Newtonsoft.Json;
using OfficeOpenXml.FormulaParsing.Excel.Functions.Text;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO
{
    /// <summary>
    /// 海康小车信息
    /// </summary>
    public class HIKROBOTQuery
    {
        /// <summary>
        /// 小车编号
        /// </summary>
        public string singleRobotCode { get; set; }
    }
 
 
    public class HIKROBOTQueryData
    {
        /// <summary>
        /// 通过返回的"mapCode"来区分楼层 AA是1楼,BB是2楼,CC是3楼,DD是4楼,EE是5楼,FF是6楼
        /// </summary>
        public string mapCode { get; set; }
 
 
        /// <summary>
        /// 小车编号
        /// </summary>
        public string singleRobotCode { get; set; }
    }
 
 
}