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
65
66
67
68
69
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace XImagingXhandler.XDAL
{
    public class MethodMsg
    {
        public MethodMsg(string methodmsg_id, string methodmsg_machine_id, int methodmsg_type, string methodmsg_experiment_id, string methodmsg_methodname, string error_code, string error_text, int troubleshoot, int slovetype)
        {
            this.methodmsg_id = methodmsg_id;
            this.methodmsg_machine_id = methodmsg_machine_id;
            this.methodmsg_type = methodmsg_type;
            this.methodmsg_experiment_id = methodmsg_experiment_id;
            this.methodmsg_methodname = methodmsg_methodname;
            this.error_code = error_code;
            this.error_text = error_text;
            this.troubleshoot = troubleshoot;
            this.slovetype = slovetype;
        }
 
 
        /// <summary>
        /// 消息Id
        /// </summary>
        public string methodmsg_id { get; set; }
        /// <summary>
        /// 设备Id
        /// </summary>
        public string methodmsg_machine_id { get; set; }
 
        /// <summary>
        /// 消息类别
        /// </summary>
        public int methodmsg_type { get; set; }
 
        /// <summary>
        /// 实验Id
        /// </summary>
        public string methodmsg_experiment_id { get; set; }
 
        /// <summary>
        /// 实验执行的方法
        /// </summary>
        public string methodmsg_methodname { get; set; }
 
        /// <summary>
        /// 错误消息编号
        /// </summary>
        public string error_code { get; set; }
 
        /// <summary>
        /// 错误消息内容
        /// </summary>
        public string error_text { get; set; }
 
        /// <summary>
        /// 排查故障
        /// </summary>
        public int troubleshoot { get; set; }
 
        /// <summary>
        /// 解决方式
        /// </summary>
        public int slovetype { get; set; } = 0;
    }
}