프로젝트

일반

사용자정보

통계
| 개정판:

hytos / ID2.Manager / ID2.Manager.Data / Models / Documents.cs @ f37c5383

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

1 5898479a yoush97
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6
7 1bd7e3a0 yoush97
using System.ComponentModel;
8 5898479a yoush97
using System.Runtime.Serialization;
9
10 295ce375 yoush97
using Newtonsoft.Json;
11
12 5898479a yoush97
namespace ID2.Manager.Data.Models
13
{
14 25f68105 taeseongkim
    //[DataContract]
15
    //[JsonObject(IsReference = true)]
16 d428fc94 taeseongkim
    public class Documents : NotifyPropertyChange, IEquatable<Documents>
17 5898479a yoush97
    {
18 25f68105 taeseongkim
        //[DataMember]
19 5898479a yoush97
        public int Seq { get; set; }
20 25f68105 taeseongkim
        //[DataMember]
21 90ae20f6 yoush97
        public string DocID { get; set; }
22 25f68105 taeseongkim
        //[DataMember]
23 5898479a yoush97
        public string DocumentNo { get; set; }
24 25f68105 taeseongkim
        //[DataMember]
25 90ae20f6 yoush97
        public string RevisonNo { get; set; }
26 25f68105 taeseongkim
        //[DataMember]
27 79d7836e yoush97
        public string System { get; set; }
28 25f68105 taeseongkim
        //[DataMember]
29 79d7836e yoush97
        public string SubSystemCode { get; set; }
30 a8981c30 yoush97
        public string Team { get; set; }
31 4d2f9e47 yoush97
32 bc01d8d5 yoush97
        private string _Simularity = null;
33 d0a1d373 yoush97
        public string Simularity
34
        {
35 bc01d8d5 yoush97
            get => this._Simularity;
36
            set => SetProperty(ref this._Simularity, value);
37 5ae34a5e humkyung
        }
38
39 be38bb2e yoush97
        private string _Simularity2 = null;
40
        public string Simularity2
41
        {
42
            get => this._Simularity2;
43
            set => SetProperty(ref this._Simularity2, value);
44
        }
45
46 4d2f9e47 yoush97
        private string _RefProjectCode = string.Empty;
47 25f68105 taeseongkim
        //[DataMember]
48 4d2f9e47 yoush97
        public string RefProjectCode
49
        {
50
            get => this._RefProjectCode;
51
            set => SetProperty(ref this._RefProjectCode, value);
52
        }
53
54
        private string _JobLevel = string.Empty;
55 25f68105 taeseongkim
        //[DataMember]
56 4d2f9e47 yoush97
        public string JobLevel
57
        {
58
            get => this._JobLevel;
59
            set => SetProperty(ref this._JobLevel, value);
60
        }
61
62 40a1e23a yoush97
        private string _PersonInCharge = null;
63 25f68105 taeseongkim
        //[DataMember]
64 4d2f9e47 yoush97
        public string PersonInCharge
65
        {
66
            get => this._PersonInCharge;
67
            set => SetProperty(ref this._PersonInCharge, value);
68
        }
69
70 40a1e23a yoush97
        private string _Worker = null;
71 25f68105 taeseongkim
        //[DataMember]
72 1bd7e3a0 yoush97
        public string Worker
73
        {
74 d0a1d373 yoush97
            get => this._Worker;
75 4d2f9e47 yoush97
            set => SetProperty(ref this._Worker, value);
76 1bd7e3a0 yoush97
        }
77 4d2f9e47 yoush97
78 25f68105 taeseongkim
        //[DataMember]
79 54977253 yoush97
        public string RegisteredUser { get; set; }
80 25f68105 taeseongkim
        //[DataMember]
81 54977253 yoush97
        public string ModifiedUser { get; set; }
82 25f68105 taeseongkim
        //[DataMember]
83 54977253 yoush97
        public string DeletedUser { get; set; }
84 4d2f9e47 yoush97
85
        private string _ToIsDiscussion = string.Empty;
86 25f68105 taeseongkim
        //[DataMember]
87 4d2f9e47 yoush97
        public string ToIsDiscussion
88
        {
89
            get => this._ToIsDiscussion;
90
            set => SetProperty(ref this._ToIsDiscussion, value);
91
        }
92
93 25f68105 taeseongkim
        //[DataMember]
94 5898479a yoush97
        public string ToRemarks { get; set; }
95 4d2f9e47 yoush97
96 d0a1d373 yoush97
        private string _ToCreator = null;
97 25f68105 taeseongkim
        //[DataMember]
98 4d2f9e47 yoush97
        public string ToCreator
99
        {
100
            get => this._ToCreator;
101
            set => SetProperty(ref this._ToCreator, value);
102
        }
103
104 e8a86b9b yoush97
        public int ToCapture { get; set; }
105 4d2f9e47 yoush97
106
        private string _FrReviewStatus = string.Empty;
107 25f68105 taeseongkim
        //[DataMember]
108 4d2f9e47 yoush97
        public string FrReviewStatus
109
        {
110
            get => this._FrReviewStatus;
111
            set => SetProperty(ref this._FrReviewStatus, value);
112
        }
113
114 25f68105 taeseongkim
        //[DataMember]
115 5898479a yoush97
        public string FrRemarks { get; set; }
116 4d2f9e47 yoush97
117 d0a1d373 yoush97
        private string _FrCreator = null;
118 25f68105 taeseongkim
        //[DataMember]
119 4d2f9e47 yoush97
        public string FrCreator
120
        {
121
            get => this._FrCreator;
122
            set => SetProperty(ref this._FrCreator, value);
123
        }
124
125 e8a86b9b yoush97
        public int FrCapture { get; set; }
126 25f68105 taeseongkim
        //[DataMember]
127 947e6939 yoush97
        public DateTime? ID2StartDate { get; set; }
128 25f68105 taeseongkim
        //[DataMember]
129 947e6939 yoush97
        public DateTime? ID2EndDate { get; set; }
130 4d2f9e47 yoush97
131
132
        private string _ID2Status = string.Empty;
133 25f68105 taeseongkim
        //[DataMember]
134 4d2f9e47 yoush97
        public string ID2Status
135
        {
136
            get => this._ID2Status;
137
            set => SetProperty(ref this._ID2Status, value);
138
        }
139
140
141 25f68105 taeseongkim
        //[DataMember]
142 90ae20f6 yoush97
        public string ID2Issues { get; set; }
143 f4230b40 yoush97
        public int ID2Capture { get; set; }
144 25f68105 taeseongkim
        //[DataMember]
145 cb2e1138 yoush97
        public string ReplyModifications { get; set; }
146 4d2f9e47 yoush97
147 d0a1d373 yoush97
        private string _ReplyRequester = null;
148 25f68105 taeseongkim
        //[DataMember]
149 4d2f9e47 yoush97
        public string ReplyRequester
150
        {
151
            get => this._ReplyRequester;
152
            set => SetProperty(ref this._ReplyRequester, value);
153
        }
154
155
        private string _IsConvert = string.Empty;
156 25f68105 taeseongkim
        //[DataMember]
157 4d2f9e47 yoush97
        public string IsConvert
158
        {
159
            get => this._IsConvert;
160
            set => SetProperty(ref this._IsConvert, value);
161
        }
162
163 40a1e23a yoush97
        private string _AVEVAPersonInCharge = null;
164 25f68105 taeseongkim
        //[DataMember]
165 4d2f9e47 yoush97
        public string AVEVAPersonInCharge
166
        {
167
            get => this._AVEVAPersonInCharge;
168
            set => SetProperty(ref this._AVEVAPersonInCharge, value);
169
        }
170
171 40a1e23a yoush97
        private string _AVEVAWorker = null;
172 25f68105 taeseongkim
        //[DataMember]
173 4d2f9e47 yoush97
        public string AVEVAWorker
174
        {
175
            get => this._AVEVAWorker;
176
            set => SetProperty(ref this._AVEVAWorker, value);
177
        }
178
179 25f68105 taeseongkim
        //[DataMember]
180 482f6326 yoush97
        public DateTime? AVEVAConvertDate { get; set; }
181 25f68105 taeseongkim
        //[DataMember]
182 482f6326 yoush97
        public DateTime? AVEVAReviewDate { get; set; }
183 25f68105 taeseongkim
        //[DataMember]
184 ab3c1c74 yoush97
        public DateTime? AVEVAWorkDate { get; set; }
185 4d2f9e47 yoush97
186
        private string _AVEVAStatus = string.Empty;
187 25f68105 taeseongkim
        //[DataMember]
188 4d2f9e47 yoush97
        public string AVEVAStatus
189
        {
190
            get => this._AVEVAStatus;
191
            set => SetProperty(ref this._AVEVAStatus, value);
192
        }
193
194 25f68105 taeseongkim
        //[DataMember]
195 90ae20f6 yoush97
        public string AVEVAIssues { get; set; }
196 4d2f9e47 yoush97
197 81428703 yoush97
        private string _ProdReviewer = null;
198 25f68105 taeseongkim
        //[DataMember]
199 4d2f9e47 yoush97
        public string ProdReviewer
200
        {
201
            get => this._ProdReviewer;
202
            set => SetProperty(ref this._ProdReviewer, value);
203
        }
204
205
        private string _ProdIsResult = string.Empty;
206 25f68105 taeseongkim
        //[DataMember]
207 4d2f9e47 yoush97
        public string ProdIsResult
208
        {
209
            get => this._ProdIsResult;
210
            set => SetProperty(ref this._ProdIsResult, value);
211
        }
212
213 25f68105 taeseongkim
        //[DataMember]
214 90ae20f6 yoush97
        public string ProdRemarks { get; set; }
215 4d2f9e47 yoush97
216 d0a1d373 yoush97
        private string _ClientReviewer = null;
217 25f68105 taeseongkim
        //[DataMember]
218 4d2f9e47 yoush97
        public string ClientReviewer
219
        {
220
            get => this._ClientReviewer;
221
            set => SetProperty(ref this._ClientReviewer, value);
222
        }
223
224
        private string _ClientIsResult = string.Empty;
225 25f68105 taeseongkim
        //[DataMember]
226 4d2f9e47 yoush97
        public string ClientIsResult
227
        {
228
            get => this._ClientIsResult;
229
            set => SetProperty(ref this._ClientIsResult, value);
230
        }
231
232 25f68105 taeseongkim
        //[DataMember]
233 90ae20f6 yoush97
        public string ClientRemarks { get; set; }
234 4d2f9e47 yoush97
235
        private string _DTIsGateWay = string.Empty;
236 25f68105 taeseongkim
        //[DataMember]
237 4d2f9e47 yoush97
        public string DTIsGateWay
238
        {
239
            get => this._DTIsGateWay;
240
            set => SetProperty(ref this._DTIsGateWay, value);
241
        }
242
243
        private string _DTIsImport = string.Empty;
244 25f68105 taeseongkim
        //[DataMember]
245 4d2f9e47 yoush97
        public string DTIsImport
246
        {
247
            get => this._DTIsImport;
248
            set => SetProperty(ref this._DTIsImport, value);
249
        }
250
251
        private string _DTIsRegSystem = string.Empty;
252 25f68105 taeseongkim
        //[DataMember]
253 4d2f9e47 yoush97
        public string DTIsRegSystem
254
        {
255
            get => this._DTIsRegSystem;
256
            set => SetProperty(ref this._DTIsRegSystem, value);
257
        }
258
259 25f68105 taeseongkim
        //[DataMember]
260 947e6939 yoush97
        public string DTRemarks { get; set; }
261 709c1971 yoush97
262 e458a996 taeseongkim
        public List<MarkupText> Markups { get; set; }
263 c0b49a75 taeseongkim
264 08499f5f taeseongkim
        public List<AttFileInfo> AttFiles { get; set; }
265
266 9096bc6d taeseongkim
        public int ConvertStatus { get; set; }
267 08499f5f taeseongkim
268 25642756 humkyung
        /// <summary>
269
        /// Local에 위치한 Drawing Folder
270
        /// </summary>
271
        public string LocalDrawingFolder { get; set; }
272
273 d428fc94 taeseongkim
        public override bool Equals(object obj)
274
        {
275
            return Equals(obj as Documents);
276
        }
277
278
        public bool Equals(Documents other)
279
        {
280
281
            if (this != null && other == null)
282
                return false;
283
284 d0a1d373 yoush97
            if (this.DocumentNo != other.DocumentNo) return false;
285
            if (this.RevisonNo != other.RevisonNo) return false;
286
            if (this.System != other.System) return false;
287
            if (this.SubSystemCode != other.SubSystemCode) return false;
288
            if (this.RefProjectCode != other.RefProjectCode) return false;
289
            if (this.JobLevel != other.JobLevel) return false;
290
            if (this.Simularity != other.Simularity) return false;
291 be38bb2e yoush97
            if (this.Simularity2 != other.Simularity2) return false;
292 d0a1d373 yoush97
            if (this.PersonInCharge != other.PersonInCharge) return false;
293
            if (this.Worker != other.Worker) return false;
294
            if (this.ToIsDiscussion != other.ToIsDiscussion) return false;
295
            if (this.ToRemarks != other.ToRemarks) return false;
296
            if (this.ToCreator != other.ToCreator) return false;
297
298
            if (this.FrReviewStatus != other.FrReviewStatus) return false;
299
            if (this.FrRemarks != other.FrRemarks) return false;
300
            if (this.FrCreator != other.FrCreator) return false;
301
            if (this.ID2StartDate != other.ID2StartDate) return false;
302
            if (this.ID2EndDate != other.ID2EndDate) return false;
303
            if (this.ID2Status != other.ID2Status) return false;
304
            if (this.ID2Issues != other.ID2Issues) return false;
305
            if (this.ReplyModifications != other.ReplyModifications) return false;
306
            if (this.ReplyRequester != other.ReplyRequester) return false;
307
            if (this.IsConvert != other.IsConvert) return false;
308
            if (this.AVEVAPersonInCharge != other.AVEVAPersonInCharge) return false;
309
            if (this.AVEVAWorker != other.AVEVAWorker) return false;
310
            if (this.AVEVAConvertDate != other.AVEVAConvertDate) return false;
311
            if (this.AVEVAReviewDate != other.AVEVAReviewDate) return false;
312
            if (this.AVEVAWorkDate != other.AVEVAWorkDate) return false;
313
            if (this.AVEVAStatus != other.AVEVAStatus) return false;
314
            if (this.AVEVAIssues != other.AVEVAIssues) return false;
315
            if (this.ProdReviewer != other.ProdReviewer) return false;
316
            if (this.ProdIsResult != other.ProdIsResult) return false;
317
            if (this.ProdRemarks != other.ProdRemarks) return false;
318
            if (this.ClientReviewer != other.ClientReviewer) return false;
319
            if (this.ClientIsResult != other.ClientIsResult) return false;
320
            if (this.ClientRemarks != other.ClientRemarks) return false;
321
            if (this.DTIsGateWay != other.DTIsGateWay) return false;
322
            if (this.DTIsImport != other.DTIsImport) return false;
323
            if (this.DTIsRegSystem != other.DTIsRegSystem) return false;
324
            if (this.DTRemarks != other.DTRemarks) return false;
325
            if (this.ConvertStatus != other.ConvertStatus) return false;
326 62e3647c yoush97
327 d428fc94 taeseongkim
            if (this.AttFiles == null && other.AttFiles == null)
328
            {
329 62e3647c yoush97
                return true;
330 d428fc94 taeseongkim
            }
331 43adf299 taeseongkim
            else if (this.AttFiles != null && other.AttFiles != null)
332 d428fc94 taeseongkim
            {
333 43adf299 taeseongkim
                if (!this.AttFiles.SequenceEqual(other.AttFiles))
334
                    return false;
335 d428fc94 taeseongkim
            }
336 62e3647c yoush97
            else
337
            {
338
                return false;
339
            }
340 d428fc94 taeseongkim
341 43adf299 taeseongkim
            //bool result =  this.FrReviewStatus == other.FrReviewStatus && this.FrRemarks == other.FrRemarks && this.FrCreator == other.FrCreator
342
            //    && this.ID2StartDate == other.ID2StartDate && this.ID2EndDate == other.ID2EndDate && this.ID2Status == other.ID2Status
343
            //    && this.ID2Issues == other.ID2Issues && this.ReplyModifications == other.ReplyModifications && this.ReplyRequester == other.ReplyRequester && this.IsConvert == other.IsConvert && this.AVEVAPersonInCharge == other.AVEVAPersonInCharge && this.AVEVAWorker == other.AVEVAWorker
344
            //    && this.AVEVAConvertDate == other.AVEVAConvertDate && this.AVEVAReviewDate == other.AVEVAReviewDate && this.AVEVAWorkDate == other.AVEVAWorkDate
345
            //    && this.AVEVAStatus == other.AVEVAStatus && this.AVEVAIssues == other.AVEVAIssues
346
            //    && this.ProdReviewer == other.ProdReviewer && this.ProdIsResult == other.ProdIsResult && this.ProdRemarks == other.ProdRemarks && this.ClientReviewer == other.ClientReviewer
347
            //    && this.ClientIsResult == other.ClientIsResult && this.ClientRemarks == other.ClientRemarks && this.DTIsGateWay == other.DTIsGateWay && this.DTIsImport == other.DTIsImport
348
            //    && this.DTIsRegSystem == other.DTIsRegSystem && this.DTRemarks == other.DTRemarks && this.ConvertStatus == other.ConvertStatus
349
            //    && isAttfilesEqual;
350
351
            //if (result == false)
352
            //{
353
            //    string id = this.DocID;
354
            //}
355
356
            return true;
357 d428fc94 taeseongkim
358
        }
359
        public override int GetHashCode()
360
        {
361
            return this.DocumentNo.GetNullableHash() + this.RevisonNo.GetNullableHash() + this.System.GetNullableHash() + this.SubSystemCode.GetNullableHash()
362 be38bb2e yoush97
                + this.RefProjectCode.GetNullableHash() + this.JobLevel.GetNullableHash() + this.Simularity.GetNullableHash() + this.Simularity2.GetNullableHash()
363 62e3647c yoush97
                + this.PersonInCharge.GetNullableHash() + this.Worker.GetNullableHash() + this.ToIsDiscussion.GetNullableHash() + this.ToRemarks.GetNullableHash()
364 d428fc94 taeseongkim
                + this.ToCreator.GetNullableHash()
365
                + this.FrReviewStatus.GetNullableHash() + this.FrRemarks.GetNullableHash() + this.FrCreator.GetNullableHash()
366
                + this.ID2StartDate.GetNullableHash() + this.ID2EndDate.GetNullableHash() + this.ID2Status.GetNullableHash()
367
                + this.ID2Issues.GetNullableHash() + this.ReplyModifications.GetNullableHash() + this.ReplyRequester.GetNullableHash() + this.IsConvert.GetNullableHash() + this.AVEVAPersonInCharge.GetNullableHash() + this.AVEVAWorker.GetNullableHash()
368
                + this.AVEVAConvertDate.GetNullableHash() + this.AVEVAReviewDate.GetNullableHash() + this.AVEVAWorkDate.GetNullableHash()
369
                + this.AVEVAStatus.GetNullableHash() + this.AVEVAIssues.GetNullableHash()
370
                + this.ProdReviewer.GetNullableHash() + this.ProdIsResult.GetNullableHash() + this.ProdRemarks.GetNullableHash() + this.ClientReviewer.GetNullableHash()
371
                + this.ClientIsResult.GetNullableHash() + this.ClientRemarks.GetNullableHash() + this.DTIsGateWay.GetNullableHash() + this.DTIsImport.GetNullableHash()
372
                + this.DTIsRegSystem.GetNullableHash() + this.DTRemarks.GetNullableHash() + this.ConvertStatus.GetNullableHash();
373
        }
374 d2d4f84b yoush97
375 f074a104 yoush97
        public class DocumentsKeyCompare : IEqualityComparer<Documents>
376 d2d4f84b yoush97
        {
377
            public bool Equals(Documents x, Documents y)
378
            {
379
                if (x == null && y == null)
380
                    return true;
381
                else if (x == null || y == null)
382
                    return false;
383
                else
384
                {
385
                    return x.DocID == y.DocID;
386
                }
387
            }
388
389
            public int GetHashCode(Documents obj)
390
            {
391
                return (obj.DocID != null ? obj.DocID.GetHashCode() : 0);
392
            }
393
        }
394 f074a104 yoush97
395
        public class DocumentsUniqueCompare : IEqualityComparer<Documents>
396
        {
397
            public bool Equals(Documents x, Documents y)
398
            {
399
                if (x == null && y == null)
400
                    return true;
401
                else if (x == null || y == null)
402
                    return false;
403
                else
404
                {
405
                    return x.RefProjectCode == y.RefProjectCode && x.DocumentNo == y.DocumentNo;
406
                }
407
            }
408
409
            public int GetHashCode(Documents obj)
410
            {
411
                return (obj.RefProjectCode != null ? obj.RefProjectCode.GetHashCode() : 0) + (obj.DocumentNo != null ? obj.DocumentNo.GetHashCode() : 0);
412
            }
413
        }
414
415 e9700266 yoush97
        public void DataCopy(Documents docData)
416 f074a104 yoush97
        {
417 e9700266 yoush97
            this.DocumentNo = docData.DocumentNo;
418
            this.RevisonNo = docData.RevisonNo;
419
            this.System = docData.System;
420
            this.SubSystemCode = docData.SubSystemCode;
421
            this.RefProjectCode = docData.RefProjectCode;
422
            this.JobLevel = docData.JobLevel;
423 b2c03c2e yoush97
            //this.Simularity = docData.Simularity;
424 be38bb2e yoush97
            //this.Simularity2 = docData.Simularity2;
425 e9700266 yoush97
            this.PersonInCharge = docData.PersonInCharge;
426 62e3647c yoush97
            this.Worker = docData.Worker;
427 e9700266 yoush97
            this.ToIsDiscussion = docData.ToIsDiscussion;
428
            this.ToRemarks = docData.ToRemarks;
429
            this.ToCreator = docData.ToCreator;
430
            this.ToCapture += docData.ToCapture;
431
            this.FrReviewStatus = docData.FrReviewStatus;
432
            this.FrRemarks = docData.FrRemarks;
433
            this.FrCapture += docData.FrCapture;
434
            this.FrCreator = docData.FrCreator;
435
            this.ID2StartDate = docData.ID2StartDate;
436
            this.ID2EndDate = docData.ID2EndDate;
437
            this.ID2Status = docData.ID2Status;
438
            this.ID2Issues = docData.ID2Issues;
439
            this.ID2Capture += docData.ID2Capture;
440
            this.ReplyModifications = docData.ReplyModifications;
441
            this.ReplyRequester = docData.ReplyRequester;
442
            this.IsConvert = docData.IsConvert;
443
            this.AVEVAPersonInCharge = docData.AVEVAPersonInCharge;
444
            this.AVEVAWorker = docData.AVEVAWorker;
445
            this.AVEVAConvertDate = docData.AVEVAConvertDate;
446
            this.AVEVAReviewDate = docData.AVEVAReviewDate;
447
            this.AVEVAWorkDate = docData.AVEVAWorkDate;
448
            this.AVEVAStatus = docData.AVEVAStatus;
449
            this.AVEVAIssues = docData.AVEVAIssues;
450
            this.ProdReviewer = docData.ProdReviewer;
451
            this.ProdIsResult = docData.ProdIsResult;
452
            this.ProdRemarks = docData.ProdRemarks;
453
            this.ClientReviewer = docData.ClientReviewer;
454
            this.ClientIsResult = docData.ClientIsResult;
455
            this.ClientRemarks = docData.ClientRemarks;
456
            this.DTIsGateWay = docData.DTIsGateWay;
457
            this.DTIsImport = docData.DTIsImport;
458
            this.DTIsRegSystem = docData.DTIsRegSystem;
459
            this.DTRemarks = docData.DTRemarks;
460 f074a104 yoush97
            if (this.AttFiles == null)
461 e9700266 yoush97
                this.AttFiles = docData.AttFiles;
462 f074a104 yoush97
            else
463 e9700266 yoush97
                this.AttFiles.AddRange(docData.AttFiles ?? new List<AttFileInfo>());
464 f074a104 yoush97
        }
465 5898479a yoush97
    }
466 fe57f64a yoush97
467
    [DataContract]
468
    public class ID2Drawings
469
    {
470 25f68105 taeseongkim
        //[DataMember]
471 e458a996 taeseongkim
        public string PROJECTNAME { get; set; }
472 25f68105 taeseongkim
        //[DataMember]
473 fe57f64a yoush97
        public string UID { get; set; }
474 25f68105 taeseongkim
        //[DataMember]
475 fe57f64a yoush97
        public string NAME { get; set; }
476 25f68105 taeseongkim
        //[DataMember]
477 fe57f64a yoush97
        public string DOCNAME { get; set; }
478 25f68105 taeseongkim
        //[DataMember]
479 fe57f64a yoush97
        public DateTime? DATETIME { get; set; }
480 25f68105 taeseongkim
        //[DataMember]
481 fe57f64a yoush97
        public string OCCUPIED { get; set; }
482 25f68105 taeseongkim
        //[DataMember]
483 fe57f64a yoush97
        public byte[] Image { get; set; }
484
    }
485 904fbe46 yoush97
486 aa3deda4 humkyung
    [DataContract]
487
    public class ID2Symbol
488
    {
489
        [DisplayName("Project")]
490
        [ReadOnly(true)]
491
        public string PrjName { get; set; }
492
        [Browsable(false)]
493
        [ReadOnly(true)]
494
        public string PrjPath { get; set; }
495
        [DataMember]
496
        [ReadOnly(true)]
497
        public string Name { get; set; }
498
        [DataMember]
499
        [ReadOnly(true)]
500
        public string Type { get; set; }
501
        [DataMember]
502
        [Browsable(false)]
503
        [ReadOnly(true)]
504
        public string OriginalPoint { get; set; }
505
        [DataMember]
506
        [Browsable(false)]
507
        [ReadOnly(true)]
508
        public string ConnectionPoint { get; set; }
509 72676337 humkyung
510
        [ReadOnly(true)]
511
        public int Width{ get; set; }
512
513
        [ReadOnly(true)]
514
        public int Height{ get; set; }
515 aa3deda4 humkyung
    }
516
517 f37c5383 humkyung
    [DataContract]
518
    public class ID2Configuration
519
    {
520
        public string Section{ get; set; }
521
        public string Key{ get; set; }
522
        public string Value{ get; set; }
523
    }
524
525 904fbe46 yoush97
    public class DocumentsResult
526
    {
527
        public List<Documents> Dwgs { get; set; }
528
        public int TotalCount { get; set; }
529
    }
530 5898479a yoush97
}
클립보드 이미지 추가 (최대 크기: 500 MB)