1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.Windturbine
- {
-
-
-
- public class StatusTimeInfo
- {
-
-
-
- public long Ts { get; set; }
-
-
-
- public string Status { get; set; }
-
-
-
- public string Code { get; set; }
-
-
-
- public string StartTime { get; set; }
-
-
-
- public string EndTime { get; set; }
- private double duration;
-
-
-
- public double Duration { get => duration; set => duration = Math.Round(value, 2); }
-
-
-
- public string StatusName { get; set; }
- }
- }
|