StationType.cs 501 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NEIntelligentControl2.Models.Station
  7. {
  8. /// <summary>
  9. /// 场站类型
  10. /// </summary>
  11. public enum StationType
  12. {
  13. /// <summary>
  14. /// 其他
  15. /// </summary>
  16. Other,
  17. /// <summary>
  18. /// 风场
  19. /// </summary>
  20. Wind,
  21. /// <summary>
  22. /// 光伏
  23. /// </summary>
  24. PV
  25. }
  26. }