You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
530 B
25 lines
530 B
using System.Threading.Tasks;
|
|
|
|
namespace Kean.Application.Command.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// 表示控制交互命令服务
|
|
/// </summary>
|
|
public interface IWcsService
|
|
{
|
|
/// <summary>
|
|
/// 访问输入指令
|
|
/// </summary>
|
|
Task AccessInputs();
|
|
|
|
/// <summary>
|
|
/// 访问输出指令
|
|
/// </summary>
|
|
Task AccessOutputs();
|
|
|
|
/// <summary>
|
|
/// 访问站台有货变化
|
|
/// </summary>
|
|
Task AccessStation();
|
|
}
|
|
}
|