using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 通道传感器类型
///
public enum eChanSenType
{
///
///
///
位移无需供电 = 1,
///
///
///
速度无需供电 = 2,
///
///
///
加速度需供电 = 3,
///
///
///
其他无供电 = 4,
///
///
///
其他有供电 = 5,
///
///
///
加速度无需供电 = 6,
///
///
///
速度需供电 = 7,
///
///
///
位移需供电 = 8
}
}