markus / ConvertService / ServiceBase / Markus.Service.DataBase.Dapper / Entities / DOCINFO.cs @ 5532bcc0
이력 | 보기 | 이력해설 | 다운로드 (700 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.ComponentModel.DataAnnotations; |
4 |
/* |
5 |
This class requires the System.ComponentModel.Annotations package and you can download it from https://www.nuget.org/packages/System.ComponentModel.Annotations |
6 |
*/ |
7 |
namespace Markus.Service.DataBase.Entities |
8 |
{ |
9 |
public class DOCINFO |
10 |
{ |
11 |
[Key] |
12 |
[MaxLength(50)] |
13 |
public string ID {get; set;} |
14 |
[Required] |
15 |
[MaxLength(500)] |
16 |
public string ORIGINAL_FILE {get; set;} |
17 |
[Required] |
18 |
[MaxLength(50)] |
19 |
public string DOCUMENT_ID {get; set;} |
20 |
public int PAGE_COUNT {get; set;} |
21 |
[Required] |
22 |
[MaxLength(10)] |
23 |
public string PROJECT_NO {get; set;} |
24 |
|
25 |
public ICollection<DOCPAGE> DOCPAGEList { get; set; } |
26 |
} |
27 |
} |
28 |
|