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
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace IStation.Model
| {
| /// <summary>
| /// 监测测试控制参数
| /// </summary>
| public class MonitorTestControlParas
| {
| /// <summary>
| /// 0代表关机 1代表开机 -1代表变频
| /// </summary>
| public int Type { get; set; }
|
| /// <summary>
| /// 参数
| /// </summary>
| public string Paras { get; set; }
|
| }
| }
|
|