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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace DataEntity
{
    /// <summary>
    /// 实验运行日志记录实体
    /// </summary>
    public class ExperimentRunLog:IEntity
    {
        private string _experimentrunid;
        /// <summary>
        /// 实验运行Id
        /// </summary>
        [SugarColumn(ColumnName = "experimentrunid", IsPrimaryKey = true)]
        public string experimentrunid
        {
            get { return _experimentrunid; }
            set
            {
                _experimentrunid = value;
                OnPropertyChanged("experimentrunid");
            }
        }
 
        private string _experimentid;
        /// <summary>
        /// 实验Id
        /// </summary>
        [SugarColumn(ColumnName = "experimentid")]
        public string experimentid
        {
            get { return _experimentid; }
            set
            {
                _experimentid = value;
                OnPropertyChanged("experimentid");
            }
        }
 
        private DateTime _lunchtime;
        /// <summary>
        /// 开始运行时间
        /// </summary>
        [SugarColumn(ColumnName = "lunchtime")]
        public DateTime lunchtime
        {
            get { return _lunchtime; }
            set
            {
                _lunchtime = value;
                OnPropertyChanged("lunchtime");
            }
        }
 
        private DateTime _endtime;
        /// <summary>
        /// 结束运行时间
        /// </summary>
        [SugarColumn(ColumnName = "endtime")]
        public DateTime endtime
        {
            get { return _endtime; }
            set
            {
                _endtime = value;
                OnPropertyChanged("endtime");
            }
        }
 
        private int _status;
        /// <summary>
        /// 状态:0:正在执行;1;正常结束;2;异常终止;
        /// </summary>
        [SugarColumn(ColumnName = "status")]
        public int status
        {
            get { return _status; }
            set
            {
                _status = value;
                OnPropertyChanged("status");
            }
        }
 
        private string _operatorname;
        /// <summary>
        /// 运行操作者
        /// </summary>
        [SugarColumn(ColumnName = "operatorname")]
        public string operatorname
        {
            get { return _operatorname; }
            set
            {
                _operatorname = value;
                OnPropertyChanged("operatorname");
            }
        }
    }
}