markus / ConvertService / ServiceBase / Markus.Service.DataBase.Dapper / Entities / DOCPAGE.cs @ 5532bcc0
이력 | 보기 | 이력해설 | 다운로드 (642 Bytes)
1 |
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 Markus.Service.DataBase.Entities |
7 |
{ |
8 |
public class DOCPAGE |
9 |
{ |
10 |
[Key] |
11 |
[MaxLength(50)] |
12 |
public string ID {get; set;} |
13 |
[Required] |
14 |
[MaxLength(50)] |
15 |
public string DOCINFO_ID {get; set;} |
16 |
public int PAGE_NUMBER {get; set;} |
17 |
[Required] |
18 |
[MaxLength(20)] |
19 |
public string PAGE_WIDTH {get; set;} |
20 |
[Required] |
21 |
[MaxLength(20)] |
22 |
public string PAGE_HEIGHT {get; set;} |
23 |
public int PAGE_ANGLE {get; set;} |
24 |
} |
25 |
} |
26 |
|