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 PowerActual
{
///
/// 风场名称
///
public string StationName { set; get; }
///
/// 测点值集合
///
public List TsDataList { set; get; }
}
}