huangxiaoqiang
8 天以前 c3877b2ebec19f473f45e8c2245926f65d2a3948
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO.AGV
{
    public class AGVStatus
    {
        public string AGVName { get; set; }
        public string RuntimeStatus { get; set; }
        public string AutoStatus { get; set; }
    }
    public class AGVStatusRespone
    {
        public string RuntimeStatus { get; set; }
        public string AutoStatus { get; set; }
    }
}