ningshuxia
2022-12-08 28be45ed36fae7ac49b0b8395228bafa935e04fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Model
{
    /// <summary>
    ///  
    /// </summary>
    public partial class MonitorTestControlParas
    {
        /// <summary>
        /// 开机参数
        /// </summary>
        public class StartContext : JsonList<StartContext>
        { 
            /// <summary>
            /// 
            /// </summary>
            public StartContext() { }
 
 
            /// <summary>
            /// 
            /// </summary>
            public StartContext(double hz, eOperatingMode operatingMode, double operatingValue)
            {
                this.HZ = hz;
                this.OperatingMode = operatingMode;
                this.OperatingValue = operatingValue;
            }
 
            /// <summary>
            /// 频率
            /// </summary>  
            public double HZ { get; set; }
 
            /// <summary>
            /// 运行模式
            /// </summary> 
            public eOperatingMode OperatingMode { get; set; }
 
            /// <summary>
            /// 运行值
            /// </summary> 
            public double OperatingValue { get; set; }
        }
 
 
    }
}