ningshuxia
2022-08-19 594b3d1a2fa051d1aa8c3da15cbdff6195dbbfc5
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Application
{
    /// <summary>
    /// 监测对象最后一条运行状态记录
    /// </summary>
    public class MonitorObjectLastRunStatusRecord
    {
        /// <summary>
        /// 客户标识
        /// </summary>
        public long CorpID { get; set; }
 
        /// <summary>
        /// 对象类型
        /// </summary>
        public string ObjectType { get; set; }
 
        /// <summary>
        /// 对象标识
        /// </summary>
        public long ObjectID { get; set; }
 
        /// <summary>
        /// 对象名称
        /// </summary>
        public string ObjectName { get; set; }
 
        /// <summary>
        /// 数据时间
        /// </summary>
        public DateTime DataTime { get; set; }
 
        /// <summary>
        /// 运行状态
        /// </summary>
        public int RunStatus { get; set; }
 
    }
}