프로젝트

일반

사용자정보

통계
| 브랜치(Branch): | 개정판:

markus / ConvertService / ServiceBase / Markus.Service.DataBase.Dapper / Entities / DOCINFO.cs @ 5532bcc0

이력 | 보기 | 이력해설 | 다운로드 (700 Bytes)

1 a5e5fff6 taeseongkim
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
}
클립보드 이미지 추가 (최대 크기: 500 MB)