markus / ConvertService / ServiceController / StationControllerService / Data / MarkupInfoItem.cs @ f333dcc2
이력 | 보기 | 이력해설 | 다운로드 (1.26 KB)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Web; |
5 |
|
6 |
namespace StationControllerService.Data |
7 |
{ |
8 |
public class MarkupInfoItem |
9 |
{ |
10 |
public string MarkupInfoID { get; set; } |
11 |
public int PageCount { get; set; } |
12 |
public string MarkupVersionID { get; set; } |
13 |
public string UserID { get; set; } |
14 |
public string UserName { get; set; } |
15 |
public string Depatment { get; set; } |
16 |
public string Description { get; set; } |
17 |
public string DisplayColor { get; set; } |
18 |
public DateTime CreateTime { get; set; } |
19 |
public DateTime UpdateTime { get; set; } |
20 |
public int Consolidate { get; set; } |
21 |
public bool userDelete { get; set; } |
22 |
public List<MarkupItem> MarkupList { get; set; } |
23 |
public int AvoidConsolidate { get; set; } |
24 |
public int PartConsolidate { get; set; } |
25 |
public bool IsPreviewUser { get; set; } |
26 |
} |
27 |
public class MarkupItem |
28 |
{ |
29 |
public string ID { get; set; } |
30 |
public int PageNumber { get; set; } |
31 |
public string Data { get; set; } |
32 |
public int Data_Type { get; set; } |
33 |
public string ParsingMemo { get; set; } |
34 |
public string Symbol_ID { get; set; } |
35 |
//public long Group_ID { get; set; } |
36 |
} |
37 |
} |