1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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
- }
- }
|