StationInfo.cs 577 B

123456789101112131415161718192021222324252627
  1. using GDNXFD.Data;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace GDNXFD.WcfService
  8. {
  9. public class StationInfo
  10. {
  11. /// <summary>
  12. /// 风场编号
  13. /// </summary>
  14. public string StationId { set; get; }
  15. public WindPowerStation Station { get; set; }
  16. //uniformCode : FCFGCDQ0001
  17. public TagInfo CDQPrdictPower01 { get; set; }
  18. public IList<WindTurbine> ListWt { get; set; }
  19. public long lastCalcTs { get; set; }
  20. }
  21. }