schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
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
55
56
57
58
59
60
61
62
63
64
using DataEntity;
using DataEntity.Device;
using System.Collections.Generic;
using System.ComponentModel;
 
namespace XImagingXhandler.XDAL
{
    /// <summary>
    /// 第三方设备方法类
    /// </summary>
    public class MethodThirdPart : IEntity
    {
        public string isrun { get; set; }
        /// <summary>
        /// 使能状态
        /// </summary>
        public string status { get; set; }
        /// <summary>
        /// 命令名称
        /// </summary>
        public string name { get; set; }
        /// <summary>
        /// 命令标签
        /// </summary>
        public string label { get; set; }
        /// <summary>
        /// 索引
        /// </summary>
        public string strIndex { get; set; }
 
        #region 设备信息
        /// <summary>
        /// 设备id
        /// </summary>
        public string deviceValue { get; set; }
        /// <summary>
        /// 设备信息
        /// </summary>
        public DeviceConfigModel device { get; set; }
        #endregion
 
        #region 设备方法
        /// <summary>
        /// 设备方法名称
        /// </summary>
        public string deviceMethodText { get; set; }
        /// <summary>
        /// 设备方法Id
        /// </summary>
        public string deviceMethodValue { get; set; }
        /// <summary>
        /// 设备方法对象
        /// </summary>
        public DeviceConfigMethodModel deviceMethod { get; set; }
        #endregion
 
        #region 参数信息:Socket
        /// <summary>
        /// 参数信息:Socket
        /// </summary>
        public List<DeviceConfigMethodParametersModel> methodParametersData { get; set; } = new List<DeviceConfigMethodParametersModel>();     
        #endregion
    }
}