프로젝트

일반

사용자정보

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

markus / IKCOM / Interface.cs @ 3a4649f8

이력 | 보기 | 이력해설 | 다운로드 (5.47 KB)

1
using KCOMDataModel.DataModel;
2
using MarkupToPDF.Controls.Common;
3
using System;
4
using System.Collections.Generic;
5
using System.Linq;
6
using System.Text;
7
using System.Windows.Controls;
8

    
9
namespace IKCOM
10
{
11
    public class Square
12
    {
13
        //0 = x, 1 = y
14
        public bool Size { get; set; }
15
        public double value { get; set; }
16
    }
17

    
18
    public class KCOM_SystemInfo
19
    {
20
        public string HostName { get; set; }
21
        public string HostPort { get; set; }
22
        public string Notify { get; set; }
23
        public string STAMP { get; set; }
24
    }
25
    //public class CommentUserInfo : Control
26
    //{
27
    //    public string Memo { get; set; }
28
    //    public string MarkupInfoID { get; set; }
29
    //}
30
    public class BooleanExt
31
    {
32
        public bool Result { get; set; }
33
        public string ResultMessage { get; set; }
34
    }
35

    
36
    public class KCOM_BasicParam
37
    {
38
        public string projectNo { get; set; }
39
        public string documentID { get; set; }
40
        public string userID { get; set; }
41
    }
42

    
43
    public class ViewInfo
44
    {
45
        public string ProjectNO { get; set; }
46
        public string UserID { get; set; }
47
        public string DocumentItemID { get; set; }
48
        public string EnsembleID { get; set; }
49
        public bool NewCommentPermission { get; set; }
50
        public bool CreateFinalPDFPermission { get; set; }
51
        public bool bPartner { get; set; }
52
        public bool isAdmin { get; set; }
53
        public string CustomHeader { get; set; }
54
        public string StartPage { get; set; }
55
        public bool IsCustomPage { get; set; }
56
    }
57

    
58
    public class PEMSSInfo
59
    {
60
        public string UserID { get; set; }
61
    }
62

    
63
        public class DisplayColorInfo
64
    {
65
        public string UserID { get; set; }
66
        public string DisplayColor { get; set; }
67
        public string Department { get; set; }
68
        public string UserName { get; set; }
69
    }
70

    
71
    public class MarkupPageItem
72
    {
73
        public MarkupPageItem()
74
        {
75
            DisplayColorItems = new List<SetColorMarkupItem>();
76
        }
77

    
78
        public int PageNumber { get; set; }
79
        public List<SetColorMarkupItem> DisplayColorItems { get; set; }
80
    }
81

    
82
    public class SetColorMarkupItem
83
    {
84
        /// GUID가 아닌 STRING으로 변경
85
        public string markupID { get; set; }
86
        //public Guid markupID { get; set; }
87
        public string DisplayColor { get; set; }
88

    
89
        public int Page { get; set; }
90
    }
91

    
92

    
93
    public class MarkupInfoItem
94
    {
95
        public string MarkupInfoID { get; set; }
96
        public int PageCount { get; set; }
97
        public string MarkupVersionID { get; set; }
98
        public string UserID { get; set; }
99
        public string UserName { get; set; }
100
        public string Depatment { get; set; }
101
        public string Description { get; set; }
102
        public string DisplayColor { get; set; }
103
        public DateTime CreateTime { get; set; }
104
        public DateTime UpdateTime { get; set; }
105
        public int Consolidate { get; set; }
106
        public bool userDelete { get; set; }
107
        public List<MarkupItem> MarkupList { get; set; }
108
        public int AvoidConsolidate { get; set; }
109
        public int PartConsolidate { get; set; }
110
        public bool IsPreviewUser { get; set; }
111
    }
112

    
113
    public class _MemberDeptColors
114
    {
115
        public List<MEMBER_DEPT_COLOR> _memberDeptColors { get; set; }
116
    }
117

    
118
    public class _MemberDeptColorsInfo
119
    {
120
        public List<MEMBER_DEPT_COLORINFO> _memberDeptColorsInfo { get; set; }
121
    }
122

    
123
    public class MarkupItemEx : MarkupItem
124
    {
125
        public string MarkupInfoID { get; set; }
126
        public bool IsUpdate { get; set; }
127
    }
128

    
129

    
130
    public class VPRevision
131
    {
132
        public string RevNo { get; set; }
133
        public string GroupNo { get; set; }
134
        public string RESULT { get; set; }
135
        public string FROM_VENDOR { get; set; }
136
        public string TO_VENDOR { get; set; }
137
        public string DOCUMENT_ID { get; set; }
138
        //public string SharePointItemID { get; set; }
139
        //public string BrowserPath { get; set; }
140
        public string DocNo { get; set; }
141
        public string EnsembleLink { get; set; }
142
        public bool IsSyncPossible { get; set; }
143
    }
144

    
145
    public class AttachedItem
146
    {
147
        public string AttachUri { get; set; }
148
        public string Filename { get; set; }
149
        public string CreateUserID { get; set; }
150
        public string CreateUserName { get; set; }
151
        public DateTime CreateDate { get; set; }
152
    }
153

    
154

    
155
    public class MarkupItem
156
    {
157
        public string ID { get; set; }
158
        public int PageNumber { get; set; }
159
        public string Data { get; set; }
160
        public int Data_Type { get; set; }
161
        public string ParsingMemo { get; set; }
162
        public string Symbol_ID { get; set; }
163
        //public long Group_ID { get; set; }
164
    }
165
    public enum SERVICE_NAME
166
    {
167
        CONVERTER = 0,
168
        VIEW = 1,
169
        FINAL = 2,
170
        API = 3,
171
    }
172

    
173
    public enum LEVEL
174
    {
175
        LOW = 0,
176
        MEDIUM = 1,
177
        HIGH = 2,
178
        CRITICAL = 3,
179
    }
180

    
181
    public enum ERROR_TYPE
182
    {
183
        SYSTEM = 0,
184
        DATABASE = 1,
185
        NORMAL = 2,
186
        PDF = 3,
187
        UPLOAD = 4,
188
        CONVERT = 5,
189
    }
190

    
191
    public enum FAVORITE_FLAG
192
    {
193
        [System.ComponentModel.Description("#FF275EFC")] //ARGB 순
194
        ALL,
195
        [System.ComponentModel.Description("#FF275EFF")] //ARGB 순
196
        TeamShare,
197
        [System.ComponentModel.Description("#FF72B21B")]
198
        Personal,
199
        //[Description("#FFCC330D")]
200
        //VeryHigh,
201
    }
202
}
클립보드 이미지 추가 (최대 크기: 500 MB)