123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.Windturbine
- {
-
-
-
- public class WindturbineSuggestion
- {
-
-
-
- public string WindturbineId { get; set; }
-
-
-
- public string OperateStyle { get; set; }
- private OperateStyle operateStyle;
-
-
-
- public OperateStyle OperateType
- {
- get
- {
- if (operateStyle != Windturbine.OperateStyle.Nothing) return operateStyle;
- try
- {
- Enum.TryParse(OperateStyle, out operateStyle);
- }
- catch { }
- return operateStyle;
- }
- }
- public string Reason { get; set; }
- }
-
-
-
- public enum CalcSource
- {
-
-
-
- Unknow,
-
-
-
- RealTimeStatus,
-
-
-
- Alarm,
-
-
-
- PowerForecast,
-
-
-
- HealthyManage,
- }
- }
|