hytos / ID2.Manager / ID2.Manager.Dapper / Entities / DOCUMENTITEM.cs @ 865a8d6d
이력 | 보기 | 이력해설 | 다운로드 (1.02 KB)
1 | 1a88080d | taeseongkim | using System; |
---|---|---|---|
2 | using System.ComponentModel.DataAnnotations; |
||
3 | /* |
||
4 | This class requires the System.ComponentModel.Annotations package and you can download it from https://www.nuget.org/packages/System.ComponentModel.Annotations |
||
5 | */ |
||
6 | namespace ID2.Manager.Dapper.Entities |
||
7 | { |
||
8 | public class DOCUMENTITEM |
||
9 | { |
||
10 | [Key] |
||
11 | [MaxLength(50)] |
||
12 | public string ID {get; set;} |
||
13 | [Required] |
||
14 | [MaxLength(50)] |
||
15 | public string REVISION {get; set;} |
||
16 | [Required] |
||
17 | [MaxLength(50)] |
||
18 | public string DOCUMENT_NO {get; set;} |
||
19 | [Required] |
||
20 | [MaxLength(500)] |
||
21 | public string DOCUMENT_NAME {get; set;} |
||
22 | [Required] |
||
23 | [MaxLength(500)] |
||
24 | public string ORIGINAL_FILE {get; set;} |
||
25 | [Required] |
||
26 | [MaxLength(50)] |
||
27 | public string DOCUMENT_ID {get; set;} |
||
28 | [Required] |
||
29 | [MaxLength(10)] |
||
30 | public string PROJECT_NO {get; set;} |
||
31 | [MaxLength(500)] |
||
32 | public string Link {get; set;} |
||
33 | public DateTime CreateDate {get; set;} |
||
34 | [MaxLength(500)] |
||
35 | public string RESULT_FILE {get; set;} |
||
36 | [MaxLength(50)] |
||
37 | public string RESULT {get; set;} |
||
38 | [MaxLength(50)] |
||
39 | public string GROUP_NO {get; set;} |
||
40 | } |
||
41 | } |