using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// /// public class AddEtaStandardConfigureInput { /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 下限 /// public double LowerLimit { get; set; } /// /// 上限 /// public double UpperLimit { get; set; } /// /// 显示颜色 /// public string Color { get; set; } /// /// 节能等级 /// public int Grade { get; set; } /// /// 说明 /// public string Description { get; set; } } }