hytos / ID2.Manager / ID2.Manager.Compare / Model / DrawingInformation.cs @ 416979ec
이력 | 보기 | 이력해설 | 다운로드 (876 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Threading.Tasks; |
6 |
|
7 |
namespace ID2.Manager.Model |
8 |
{ |
9 |
public enum Difficulity |
10 |
{ |
11 |
Level1, |
12 |
Level2, |
13 |
Level3, |
14 |
Level4, |
15 |
Level5 |
16 |
} |
17 |
|
18 |
public enum WorkStatus |
19 |
{ |
20 |
Open = 0, |
21 |
InProgress = 1, |
22 |
Complete = 2 |
23 |
} |
24 |
|
25 |
public class DrawingInformation |
26 |
{ |
27 |
public string DrawingName { get; set; } |
28 |
public Difficulity DwgDifficulity { get; set; } = Difficulity.Level1; |
29 |
public string User { get; set; } |
30 |
public DateTime Date { get; set; } = DateTime.Now; |
31 |
public WorkStatus ID2Status { get; set; } = WorkStatus.Open; |
32 |
public WorkStatus AVEVAStatus { get; set; } = WorkStatus.Open; |
33 |
public string Issue { get; set; } |
34 |
public string Comments { get; set; } |
35 |
} |
36 |
} |