xiazhengtongxue
2025-12-25 7195cf4e463af9a9f5138ced6be433f62d8ee68a
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.Agv
{
    /// <summary>
    /// AGV状态查询
    /// </summary>
    public class AgvSearchStatusDTO
    {
        /// <summary>
        /// 机器人编码
        /// </summary>
        public string RobotId { get; set; }
        /// <summary>
        /// 机器人型号
        /// </summary>
        public string RobotType { get; set; }
        /// <summary>
        /// 地图编码
        /// </summary>
        public string MapCode { get; set; }
        /// <summary>
        /// 片区编码
        /// </summary>
        public string FloorNumber { get; set; }
    }
}