1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.CommonData.PowerSupplier
- {
- public enum PowerRunModelEnum
- {
-
-
-
- Normal=1,
-
-
-
- Step=2,
-
-
-
- Period=3,
-
-
-
- Gradual=4,
-
-
-
- Function=5,
-
-
-
- Combination=6
- }
- public enum PowerControlEnum
- {
- Local=1,
- Remote=2,
- Analogy=3
- }
- public enum PowerStatusEnum
- {
- CV=0,
- CC=1,
- OutputClosed=0x10,
- OverCurrent=0xf0,
- OverHot=0xf1,
- OverVoltage=0xf2,
- SampleError=0xf3,
- OverPower=0xf4
- }
- }
|