123456789101112131415161718192021222324252627 |
- using GDNXFD.Data;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace GDNXFD.WcfService
- {
- public class StationInfo
- {
- /// <summary>
- /// 风场编号
- /// </summary>
- public string StationId { set; get; }
- public WindPowerStation Station { get; set; }
- //uniformCode : FCFGCDQ0001
- public TagInfo CDQPrdictPower01 { get; set; }
- public IList<WindTurbine> ListWt { get; set; }
- public long lastCalcTs { get; set; }
- }
- }
|