WCS
dengjunjie
2024-10-14 901c64f294ee75784f3fec80b47ae6b77932fff3
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_QuartzJob.DeviceBase;
 
namespace WIDESEAWCS_QuartzJob
{
    /// <summary>
    ///  一般穿梭车实现类,实现堆垛机接口层
    /// </summary>
    [Description("穿梭车")]
    public class CommonRGV : IDevice
    {
        public string DeviceCode => throw new NotImplementedException();
 
        public string DeviceName => throw new NotImplementedException();
 
        public bool IsFault => throw new NotImplementedException();
 
        public bool IsConnected => throw new NotImplementedException();
 
        public DeviceStatus Status => throw new NotImplementedException();
 
        public void Dispose()
        {
            throw new NotImplementedException();
        }
    }
}