using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareModel
{
///
/// 站点枚举
///
public enum StationLocationEnum
{
///
/// 269工位
///
首次扫码工位 = 100,
///
/// 清灰,洗板后工位
///
BZ01 = 101,
///
/// 补板后工位
///
BZ39 = 102,
///
/// 叠版工位
///
BZ12 = 103,
///
/// 合包工位
///
BZ21 = 104,
///
/// 齐套验证工位
///
BZ30 = 105,
///
/// 裁纸机工位
///
BZ3007 = 106
}
}