개정판 218e5002
FilterSearch 완료
Change-Id: Ia9322a69ff6ba79bdb708b71db17099788ea66a6
ConvertService/ServiceBase/IServiceBase/ConvertItem.cs | ||
---|---|---|
3 | 3 |
using System.Runtime.Serialization; |
4 | 4 |
using System.Linq.Expressions; |
5 | 5 |
using Markus.Message; |
6 |
using System.IO; |
|
7 |
|
|
6 | 8 |
namespace Markus.Service.Interface |
7 | 9 |
{ |
8 | 10 |
[DataContract] |
... | ... | |
100 | 102 |
} |
101 | 103 |
|
102 | 104 |
//DataSearch 상단 그리드 Search |
103 |
public ConvertItem(string ConvertId ,string ProjectNo, int Status, string documentID, string documentName, string documentNo, string document_URL, string revision, int currentPageNo, int totalPage, string exception, string groupNo) |
|
105 |
public ConvertItem(string serviceID, string convertId ,string projectNo, int Status, string documentID, string documentName, string documentNo, string document_URL, string revision, int currentPageNo, int totalPage, string exception, string groupNo, |
|
106 |
DateTime create_datetime, DateTime? start_datetime, DateTime? end_datetime , string originfilePath, string convertPath, string markusLink) |
|
104 | 107 |
{//세미 |
105 |
ConvertID = ConvertId; |
|
106 |
ProjectNumber = ProjectNo; |
|
107 |
ConvertState = (StatusCodeType)Status; |
|
108 |
ServiceID = serviceID; |
|
108 | 109 |
DocumentID = documentID; |
110 |
ConvertID = convertId; |
|
111 |
ProjectNumber = projectNo; |
|
112 |
ConvertState = (StatusCodeType)Status; |
|
113 |
UniqueKey = documentID; |
|
109 | 114 |
DocumnetName = documentName; |
110 | 115 |
DocumnetNo = documentNo; |
111 | 116 |
DocumnetURL = document_URL; |
... | ... | |
114 | 119 |
TotalPage = totalPage; |
115 | 120 |
Exception = exception; |
116 | 121 |
GroupNo = groupNo; |
122 |
CreateTime = create_datetime; |
|
123 |
StartTime = start_datetime; |
|
124 |
EndTime = end_datetime; |
|
125 |
ConvertPath = convertPath; |
|
126 |
MarkusLink = markusLink; |
|
127 |
OriginfilePath = originfilePath; |
|
128 |
|
|
129 |
string result = ""; |
|
130 |
if (originfilePath.Contains("/")) |
|
131 |
{ |
|
132 |
result = originfilePath.Substring(originfilePath.LastIndexOf("/") + 1); |
|
133 |
} |
|
134 |
else |
|
135 |
{ |
|
136 |
result = originfilePath.Substring(originfilePath.LastIndexOf("%") + 1); |
|
137 |
} |
|
138 |
this._FileName = result; |
|
117 | 139 |
} |
118 | 140 |
|
119 | 141 |
|
내보내기 Unified diff