using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_Tasks.DBName
{
public enum ConveyorLineName
{
#region 读取
///
/// 心跳
///
R_HearBeat,
///
/// 设备状态
///
R_Status,
///
/// 申请取(放)料
///
R_Pick,
///
/// 物料编号1
///
R_NumberA,
///
/// 物料编号2
///
R_NumberB,
///
/// 物料编号3
///
R_NumberC,
///
/// 物料编号4
///
R_NumberD,
#endregion
#region 写入
///
/// 心跳
///
W_HearBeatD,
///
/// 物料编号1
///
W_NumberAD,
///
/// 物料编号2
///
W_NumberBD,
///
/// 物料编号3
///
W_NumberCD,
///
/// 物料编号4
///
W_NumberDD,
///
/// 编号收到
///
W_ReceivedD,
#endregion
}
}