using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_Tasks.ProductionLineJob
{
public enum ProductionLineDBName
{
#region MyRegion
///
/// 托盘类型
///
trayType,
///
/// 产品数量
///
productQty,
///
/// 批号
///
batchNo,
///
/// 托盘条码
///
trayBarcode,
///
/// 站点编号
///
station,
///
/// 请求
///
request,
#endregion
#region AGV交互信号
///
/// AGV申请进入
///
AGVRequestIn,
///
/// 允许进入
///
AllowIn,
///
/// AGV离开
///
AGVLeave
#endregion
}
}