using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NEIntelligentControl2.Models.PV { /// /// 光伏状态 /// public enum PVState { /// /// 未知 /// UnKnow = -1, /// /// 待机 /// Standby = 0, /// /// 并网 /// GridConnected = 1, /// /// 故障 /// Malfunction = 2, /// /// 离线 /// Offline = 3, /// /// 维护 /// Maintain = 4, /// /// 限电 /// Restriction = 5, /// /// 限电停机 /// RestrictionShutdown = 6 } }