123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.Windturbine
- {
-
-
-
- public class ControlInstruction
- {
-
-
-
- public string WindturbineId { get; set; }
-
-
-
- public string StationId { get; set; }
-
-
-
- public string ProjectId { get; set; }
-
-
-
- public string ModelId { get; set; }
-
-
-
- public OperateStyle ControlType { get; set; }
-
-
-
- public HungType LockType { get; set; }
-
-
-
- public string LockValue { get; set; }
-
-
-
- public bool IsSuccess { get; set; }
-
-
-
- public string ErrorCode { get; set; }
- }
- }
|