#region << 版 本 注 释 >>
/*----------------------------------------------------------------
* 命名空间:WIDESEAWCS_QuartzJob
* 创建者:胡童庆
* 创建时间:2024/8/2 16:13:36
* 版本:V1.0.0
* 描述:堆垛机状态枚举
*
* ----------------------------------------------------------------
* 修改人:
* 修改时间:
* 版本:V1.0.1
* 修改说明:
*
*----------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_QuartzJob.StackerCrane.Enum
{
public enum StackerCraneStatus
{
///
/// 正常
///
[Description("正常")]
Normal,
///
/// 故障
///
[Description("故障")]
Fault,
///
/// 急停
///
[Description("急停")]
EmergencyStop,
///
/// 未知
///
[Description("未知")]
Unkonw
}
public enum StackerCraneAutoStatus
{
///
/// 维修/维护/保养
///
[Description("维修")]
Maintenance,
///
/// 手动
///
[Description("手动")]
Manual,
///
/// 半自动
///
[Description("半自动")]
SemiAutomatic,
///
/// 自动
///
[Description("自动")]
Automatic,
///
/// 未知
///
[Description("未知")]
Unkonw
}
public enum StackerCraneWorkStatus
{
///
/// 待机
///
[Description("待机")]
Standby,
///
/// 取货中
///
[Description("取货中")]
PickUp,
///
/// 取货完成
///
[Description("取货完成")]
PickUpCompleted,
///
/// 请求放货
///
[Description("请求放货")]
RequestPut,
///
/// 放货中
///
[Description("放货中")]
Putting,
///
/// 放货完成
///
[Description("放货完成")]
PutCompleted,
///
/// 任务完成
///
[Description("任务完成")]
WorkCompleted,
///
/// 空出库
///
[Description("空出库")]
EmptyOutbound,
///
/// 重入库
///
[Description("重入库")]
reInStock,
///
/// 任务执行错误
///
[Description("任务执行错误")]
WorkError,
///
/// 未知
///
[Description("未知")]
Unkonw
}
}