using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_Tasks
{
public enum ConstraintMachineDBName
{
///
/// 物流线运行信号
///
LogisticsLineRunningSignal,
///
/// 拘束机运行信号
///
ConstraintMachineRunningSignal,
///
/// 要料请求-上层
///
MaterialRequestUpper,
///
/// 拘束盘可出料-上层
///
ConstraintTrayOutputReadyUpper,
///
/// 出料请求-上层
///
OutputRequestUpper,
///
/// 要料请求-下层
///
MaterialRequestLower,
///
/// 拘束盘可出料-下层
///
ConstraintTrayOutputReadyLower,
///
/// 出料请求-下层
///
OutputRequestLower
}
}