using IStation.Model.Monitor; using IStation.Unit; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// /// public class AddSignalTypeInput { /// /// 组标识 /// public long GroupID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 唯一标识 /// public string Identifier { get; set; } /// /// 单位类型 /// public eUnitType UnitType { get; set; } /// /// 单位值 /// public string UnitValue { get; set; } /// /// 保存小数位数 /// public int? DecimalPlaces { get; set; } /// /// 值类型 /// public eValueType ValueType { get; set; } /// /// 值设置 /// public string ValueSettings { get; set; } /// /// 标记名称 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } } }