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();
|
}
|
}
|
}
|