ningshuxia
2023-03-11 8bf5f0281d3343160e76f7b79dacba9658f1c115
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 partial class MonitorTestControlParas
    {
        /// <summary>
        /// 控制类型
        /// </summary>
        public eControlType ControlType { get; set; }
 
        /// <summary>
        /// 对接上下文
        /// </summary>
        public string Context { get; set; }
 
    }
}