개정판 c95d3bca
issue #0000
그리드 수정
excel export 수정
데이터 포멧 변경
excel 템플릿 등록
Change-Id: I5949aa4497f4f1337238238bec91578d99fe8f9c
ID2.Manager/ID2.Manager.Common/Informations.cs | ||
---|---|---|
26 | 26 |
} |
27 | 27 |
|
28 | 28 |
public UserInfo ActiveUser { get; set; } |
29 |
|
|
30 |
private readonly List<string> _JobLevel = new List<string>() { "1", "2", "3", "4", "5" }; |
|
31 |
public List<string> JobLevel |
|
32 |
{ |
|
33 |
get { return _JobLevel; } |
|
34 |
} |
|
35 |
|
|
36 |
private readonly List<string> _IsYesNo = new List<string>() { "Yes", "No" }; |
|
37 |
public List<string> IsYesNo |
|
38 |
{ |
|
39 |
get { return _IsYesNo; } |
|
40 |
} |
|
41 |
|
|
42 |
private readonly List<string> _ClientStatus = new List<string>() { "검토중", "회신완료" }; |
|
43 |
public List<string> ClientStatus |
|
44 |
{ |
|
45 |
get { return _ClientStatus; } |
|
46 |
} |
|
47 |
|
|
48 |
private readonly List<string> _ValidationResult = new List<string>() { "O", "X" }; |
|
49 |
public List<string> ValidationResult |
|
50 |
{ |
|
51 |
get { return _ValidationResult; } |
|
52 |
} |
|
53 |
|
|
54 |
private readonly List<string> _JobStatus = new List<string>() { "시작전", "진행중", "완료", "기타" }; |
|
55 |
public List<string> JobStatus |
|
56 |
{ |
|
57 |
get { return _JobStatus; } |
|
58 |
} |
|
29 | 59 |
} |
30 | 60 |
} |
내보내기 Unified diff