using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// KPI指标项 /// public class EtaLargeScreenKpiItem { /// /// 名称 /// public string Name { get; set; } /// /// 值 /// public string Value { get; set; } /// /// 单位 /// public string Unit { get; set; } } }