schangxiang@126.com
2024-08-28 39c09dede499f7ba23bcd26b17b2199a31bddccc
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
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWare.Wms.Core
{
    [Table("ThreadStatusMonitor")]
    [Comment("线程状态监控表")]
    public class ThreadStatusMonitor : DEntityBase
    {
 
        /// <summary>
        /// 线程代码
        /// </summary>
        [Comment("线程代码")]
        [MaxLength(32)]
        public string Threadcode { get; set; }
 
        /// <summary>
        /// 线程描述
        /// </summary>
        [Comment("线程描述")]
        [MaxLength(255)]
        public string Threadcname { get; set; }
 
        /// <summary>
        /// 线程启动时间
        /// </summary>
        [Comment("线程启动时间")]
        public DateTime? Threadstarttime { get; set; }
 
        /// <summary>
        /// 线程结束时间
        /// </summary>
        [Comment("线程结束时间")]
        public DateTime? Threadendtime { get; set; }
 
        /// <summary>
        /// 线程最后处理时间
        /// </summary>
        [Comment("线程最后处理时间")]
        public DateTime Threadlastmodifytime { get; set; }
 
        /// <summary>
        /// 线程状态
        /// </summary>
        [Comment("线程状态")]
        public int Threadstatue { get; set; }
 
        [Comment("线程Id")]
        [MaxLength(32)]
        public string ThreadId { get; set; }
 
        [Comment("线程频率")]
        public int? ThreadFrequency { get; set; }
        [Comment("备注")]
        [MaxLength(900)]
        public string Remarks { get; set; }
    }
}