using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model.Bimface
{
///
/// 定位类型枚举
///
public enum eLocationType
{
///
/// 其他
///
Other =0,
///
/// 总管
///
Main = 1,
///
/// 机泵
///
EnginePump = 2,
}
}