ETES_INPUT_TAB.cs
1.85 KB
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
using System.ComponentModel.DataAnnotations;
using TableAttribute = System.ComponentModel.DataAnnotations.Schema.TableAttribute;
using ColumnAttribute = System.ComponentModel.DataAnnotations.Schema.ColumnAttribute;
using System;
namespace HHECS.Model.Entities
{
[Table("ETES_INPUT_TAB")]
public class ETES_INPUT_TAB : BaseEntity<int>
{
private string dataCategory;
[Column(Order = 2)]
[MaxLength(50)]
public string data_category
{
get { return dataCategory; }
set { dataCategory = value; }
}
private string inputData;
[Column(Order = 3)]
[MaxLength(2000)]
public string input_data
{
get { return inputData; }
set { inputData = value; }
}
private DateTime? postedDate;
[Column(Order = 4)]
public DateTime? posted_date
{
get { return postedDate; }
set { postedDate = value; }
}
private DateTime? startedDate;
[Column(Order = 5)]
[MaxLength(50)]
public DateTime? started_date
{
get { return startedDate; }
set { startedDate = value; }
}
private DateTime? executedDate;
[Column(Order = 6)]
public DateTime? executed_date
{
get { return executedDate; }
set { executedDate = value; }
}
private string errorInfo;
[Column(Order = 7)]
[MaxLength(2000)]
public string error_info
{
get { return errorInfo; }
set { errorInfo = value; }
}
private string rowState;
[Column(Order = 8)]
[MaxLength(50)]
public string rowstate
{
get { return rowState; }
set { rowState = value; }
}
}
}