markus / ConvertService / ServiceBase / Markus.Service.DataBase / DOCINFO.cs @ 53c9637d
이력 | 보기 | 이력해설 | 다운로드 (1.52 KB)
1 | 53c9637d | taeseongkim | //------------------------------------------------------------------------------ |
---|---|---|---|
2 | // <auto-generated> |
||
3 | // 이 코드는 템플릿에서 생성되었습니다. |
||
4 | // |
||
5 | // 이 파일을 수동으로 변경하면 응용 프로그램에서 예기치 않은 동작이 발생할 수 있습니다. |
||
6 | // 이 파일을 수동으로 변경하면 코드가 다시 생성될 때 변경 내용을 덮어씁니다. |
||
7 | // </auto-generated> |
||
8 | //------------------------------------------------------------------------------ |
||
9 | |||
10 | namespace Markus.Service.DataBase |
||
11 | { |
||
12 | using System; |
||
13 | using System.Collections.Generic; |
||
14 | |||
15 | public partial class DOCINFO |
||
16 | { |
||
17 | [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] |
||
18 | public DOCINFO() |
||
19 | { |
||
20 | this.DOCPAGE = new HashSet<DOCPAGE>(); |
||
21 | this.MARKUP_INFO = new HashSet<MARKUP_INFO>(); |
||
22 | } |
||
23 | |||
24 | public string ID { get; set; } |
||
25 | public string ORIGINAL_FILE { get; set; } |
||
26 | public string DOCUMENT_ID { get; set; } |
||
27 | public int PAGE_COUNT { get; set; } |
||
28 | public string PROJECT_NO { get; set; } |
||
29 | |||
30 | [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] |
||
31 | public virtual ICollection<DOCPAGE> DOCPAGE { get; set; } |
||
32 | [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] |
||
33 | public virtual ICollection<MARKUP_INFO> MARKUP_INFO { get; set; } |
||
34 | } |
||
35 | } |