12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using IntelligentControlForsx.Service.WindturbineControl.Domain;
- using IntelligentControlForsx.Service.WindturbineControl.Domain.Cmd;
- namespace IntelligentControlForsx.Service.CleverRecommend
- {
- public class RecommendData
- {
-
-
-
- public string StationId { set; get; }
-
-
-
- public string WindturbineId { set; get; }
-
-
-
- public CmdType RecommendType { set; get; }
-
-
-
- public WindturbineStatus Status { set; get; }
-
-
-
- public string RecommendReason { set; get; }
-
-
-
- public DateTime RecommendTime { set; get; }
- }
- }
|