分支自 SuZhouGuanHong/TaiYuanTaiZhong

dengjunjie
2024-04-19 c862dd0756111a4264666f7e7636a5a062cce806
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
 *代码由框架生成,任何更改都可能导致被代码生成器覆盖
 *如果数据库字段发生变化,请在代码生器重新生成此Model
 */
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;
using WIDESEA_Entity.SystemModels;
 
namespace WIDESEA_Entity.DomainModels
{
    [Entity(TableCnName = "调度管理",TableName = "dt_dispatchmanagement")]
    public partial class dt_dispatchmanagement:BaseEntity
    {
        /// <summary>
       ///
       /// </summary>
       [Key]
       [Display(Name ="dm_id")]
       [Column(TypeName="int")]
       [Editable(true)]
       [Required(AllowEmptyStrings=false)]
       public int dm_id { get; set; }
 
       /// <summary>
       ///调度组
       /// </summary>
       [Display(Name ="调度组")]
       [MaxLength(50)]
       [Column(TypeName="nvarchar(50)")]
       [Editable(true)]
       [Required(AllowEmptyStrings=false)]
       public string dm_group { get; set; }
 
       /// <summary>
       ///命名空间
       /// </summary>
       [Display(Name ="命名空间")]
       [MaxLength(100)]
       [Column(TypeName="nvarchar(100)")]
       [Editable(true)]
       [Required(AllowEmptyStrings=false)]
       public string dm_assembly { get; set; }
 
       /// <summary>
       ///调度类
       /// </summary>
       [Display(Name ="调度类")]
       [MaxLength(100)]
       [Column(TypeName="nvarchar(100)")]
       [Editable(true)]
       [Required(AllowEmptyStrings=false)]
       public string dm_class { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="dm_triggertype")]
       [Column(TypeName="int")]
       [Editable(true)]
       [Required(AllowEmptyStrings=false)]
       public int dm_triggertype { get; set; }
 
       /// <summary>
       ///间隔时间
       /// </summary>
       [Display(Name ="间隔时间")]
       [Column(TypeName="int")]
       [Editable(true)]
       [Required(AllowEmptyStrings=false)]
       public int dm_intervalsecond { get; set; }
 
       /// <summary>
       ///Cron表达式
       /// </summary>
       [Display(Name ="Cron表达式")]
       [MaxLength(20)]
       [Column(TypeName="nvarchar(20)")]
       [Editable(true)]
       [Required(AllowEmptyStrings=false)]
       public string dm_cron { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="dm_cycleruntimes")]
       [Column(TypeName="int")]
       [Editable(true)]
       public int? dm_cycleruntimes { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="dm_begintime")]
       [Column(TypeName="datetime")]
       [Editable(true)]
       public DateTime? dm_begintime { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="dm_endtime")]
       [Column(TypeName="datetime")]
       [Editable(true)]
       public DateTime? dm_endtime { get; set; }
 
       /// <summary>
       ///备注
       /// </summary>
       [Display(Name ="备注")]
       [MaxLength(255)]
       [Column(TypeName="nvarchar(255)")]
       [Editable(true)]
       public string dm_remark { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="dm_createtime")]
       [Column(TypeName="datetime")]
       [Editable(true)]
       [Required(AllowEmptyStrings=false)]
       public DateTime dm_createtime { get; set; }
 
       
    }
}