You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
690 B
C#
40 lines
690 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AUCMA.STORE.Entity.Enums
|
|
{
|
|
/// <summary>
|
|
/// 堆垛机状态
|
|
/// </summary>
|
|
public enum PilerStatus
|
|
{
|
|
/// <summary>
|
|
/// 无任务
|
|
/// </summary>
|
|
NoTask,
|
|
|
|
/// <summary>
|
|
/// 执行中
|
|
/// </summary>
|
|
Execute,
|
|
|
|
/// <summary>
|
|
/// 完成
|
|
/// </summary>
|
|
Accomplish,
|
|
|
|
/// <summary>
|
|
/// 故障
|
|
/// </summary>
|
|
Malfunction,
|
|
|
|
/// <summary>
|
|
/// 取消任务
|
|
/// </summary>
|
|
CancelTask,
|
|
}
|
|
}
|