12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.Windturbine
- {
- internal class WindBlockInfo
- {
-
-
-
- public string WindturbineId { set; get; }
-
-
-
- public string ModelId { set; get; }
-
-
-
- public string StationId { set; get; }
-
-
-
- public string ProjectId { set; get; }
-
-
-
- public double WindSpeed { set; get; }
-
-
-
- public double Power { set; get; }
-
-
-
- public double Status { set; get; }
-
-
-
- public OperateStyle SuggestOperateStyle { get; set; }
-
-
-
- public HungType LockType { set; get; }
-
-
-
- public DateTime OperatedTime { get; internal set; }
-
-
-
- public string ID { get; set; }
- }
- }
|