using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WisdomClient.data; namespace IntelligentControlForsx.Service.AGC.Domain { /// /// 有功设定值 /// public class PowerSet { /// /// 风场名称 /// public string StationName { set; get; } /// /// 测点值集合 /// public List TsDataList { set; get; } } }