using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace yunneiWCS.EnumDefine.Device
{
///
/// 输送线对象枚举
///
public enum TransEnum
{
///
/// 输送线L1(缸体侧长的)
///
输送线L1 = 1,
///
/// 输送线L2(缸体侧短的)
///
输送线L2 = 2,
///
/// 输送线L3(缸盖侧短的)
///
输送线L3 = 3,
///
/// 输送线L4(缸盖侧长的)
///
输送线L4 = 4
}
}