123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.Station
- {
- /// <summary>
- /// 场站类型
- /// </summary>
- public enum StationType
- {
- /// <summary>
- /// 其他
- /// </summary>
- Other,
- /// <summary>
- /// 风场
- /// </summary>
- Wind,
- /// <summary>
- /// 光伏
- /// </summary>
- PV
- }
- }
|