1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.WinForms
- {
- public class UniformCodeInfo
- {
-
-
-
- public string WindturbineId { set; get; }
-
-
-
- public string ModelId { set; get; }
-
-
-
- public string UniformCode { set; get; }
-
-
-
- public string WarningNum { set; get; }
-
-
-
- public string Name { set; get; }
-
-
-
- public string PlcName { set; get; }
-
-
-
- public int Index { set; get; }
-
-
-
- public string Unit { set; get; }
-
-
-
- public string PartName { set; get; }
-
-
-
- public string PartIndex { set; get; }
-
-
-
- public string PointValue { set; get; }
-
-
-
- public double Ratio { get; set; } = 1;
- }
- }
|