@ningboyz/types 1.0.63 → 1.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/flow/IFlowMainResponse.ts +90 -69
- package/src/flow/IFlowNodeResponse.ts +363 -108
- package/src/pzpt/IPzptGlfaResponse.ts +75 -0
- package/src/pzpt/IPzptGlkmResponse.ts +75 -0
- package/src/pzpt/IPzptGlkmfdResponse.ts +56 -0
- package/src/pzpt/IPzptGlkmzdResponse.ts +55 -0
package/package.json
CHANGED
|
@@ -6,50 +6,71 @@ export interface IFlowMainResponse {
|
|
|
6
6
|
flowIndx: number;
|
|
7
7
|
flowMain: number; //虚拟字段;value=flowIndx
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
cronNameWhenDone: string;
|
|
13
|
-
cronNameWhenNext: string;
|
|
14
|
-
cronNameWhenUndo: string;
|
|
15
|
-
dataDate: number;
|
|
16
|
-
dataFrom: number;
|
|
17
|
-
dataGUID: string;
|
|
18
|
-
dataHide: number;
|
|
9
|
+
sysClasc: number;
|
|
10
|
+
parentID: number;
|
|
11
|
+
hashCode: number;
|
|
19
12
|
dataLevl: number;
|
|
20
|
-
dataOrdr: number;
|
|
21
13
|
dataStat: number;
|
|
14
|
+
dataOrdr: number;
|
|
15
|
+
dataDate: number;
|
|
22
16
|
dataTime: number;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
deptFrom: string;
|
|
26
|
-
didDoubt: string;
|
|
27
|
-
directAt: number;
|
|
28
|
-
doubtTxt: string;
|
|
29
|
-
entityID: string;
|
|
30
|
-
flowName: string;
|
|
31
|
-
flowPara: string;
|
|
32
|
-
hashCode: number;
|
|
17
|
+
dataHide: number;
|
|
18
|
+
dataFrom: number;
|
|
33
19
|
kjndKJQJ: number;
|
|
34
|
-
|
|
20
|
+
dataGUID: string;
|
|
35
21
|
mastName: string;
|
|
36
|
-
|
|
37
|
-
|
|
22
|
+
mastGUID: string;
|
|
23
|
+
createBy: string;
|
|
24
|
+
createAt: number;
|
|
25
|
+
updateBy: string;
|
|
26
|
+
updateAt: number;
|
|
27
|
+
deleteBy: string;
|
|
28
|
+
deleteAt: number;
|
|
38
29
|
queuesBy: number;
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
30
|
+
entityID: string;
|
|
31
|
+
|
|
32
|
+
/** 退回操作 */
|
|
33
|
+
undoType: number;
|
|
34
|
+
/** 审核流程 */
|
|
35
|
+
flowName: string;
|
|
36
|
+
/** 业务表名 */
|
|
43
37
|
tablFrom: string;
|
|
44
|
-
|
|
38
|
+
/** 业务视图 */
|
|
39
|
+
viewFrom: string;
|
|
40
|
+
/** 状态字段 */
|
|
41
|
+
statFrom: string;
|
|
42
|
+
/** 单位字段 */
|
|
43
|
+
unitFrom: string;
|
|
44
|
+
/** 退回文本 */
|
|
45
45
|
undoFrom: string;
|
|
46
|
+
/** 退回标志 */
|
|
46
47
|
undoMark: string;
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
48
|
+
/** 存疑标志 */
|
|
49
|
+
didDoubt: string;
|
|
50
|
+
/** 存疑文本 */
|
|
51
|
+
doubtTxt: string;
|
|
52
|
+
/** 流程针对 */
|
|
53
|
+
directAt: number;
|
|
54
|
+
/** 部门字段 */
|
|
55
|
+
deptFrom: string;
|
|
56
|
+
/** 模块大类.名称 **/
|
|
57
|
+
sysClasn: string;
|
|
58
|
+
/** 自动跳岗 */
|
|
59
|
+
autoNext: number;
|
|
60
|
+
|
|
61
|
+
/** 退回类型 */
|
|
62
|
+
typeFrom: string;
|
|
63
|
+
/** 参数约定 */
|
|
64
|
+
flowPara: string;
|
|
65
|
+
/** 退回用户 */
|
|
51
66
|
userFrom: string;
|
|
52
|
-
|
|
67
|
+
|
|
68
|
+
/** 退回模板 */
|
|
69
|
+
cronNameWhenUndo: string;
|
|
70
|
+
/** 通过模板 */
|
|
71
|
+
cronNameWhenNext: string;
|
|
72
|
+
/** 终审模板 */
|
|
73
|
+
cronNameWhenDone: string;
|
|
53
74
|
}
|
|
54
75
|
|
|
55
76
|
export class TFlowMainResponse implements IFlowMainResponse {
|
|
@@ -58,48 +79,48 @@ export class TFlowMainResponse implements IFlowMainResponse {
|
|
|
58
79
|
flowIndx: number = 0;
|
|
59
80
|
flowMain: number = 0; //虚拟字段;value=flowIndx
|
|
60
81
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
cronNameWhenDone: string = "";
|
|
65
|
-
cronNameWhenNext: string = "";
|
|
66
|
-
cronNameWhenUndo: string = "";
|
|
67
|
-
dataDate: number = 0;
|
|
68
|
-
dataFrom: number = 0;
|
|
69
|
-
dataGUID: string = "";
|
|
70
|
-
dataHide: number = 0;
|
|
82
|
+
sysClasc: number = 0;
|
|
83
|
+
parentID: number = 0;
|
|
84
|
+
hashCode: number = 0;
|
|
71
85
|
dataLevl: number = 0;
|
|
72
|
-
dataOrdr: number = 0;
|
|
73
86
|
dataStat: number = 0;
|
|
87
|
+
dataOrdr: number = 0;
|
|
88
|
+
dataDate: number = 0;
|
|
74
89
|
dataTime: number = 0;
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
deptFrom: string = "";
|
|
78
|
-
didDoubt: string = "";
|
|
79
|
-
directAt: number = 0;
|
|
80
|
-
doubtTxt: string = "";
|
|
81
|
-
entityID: string = "";
|
|
82
|
-
flowName: string = "";
|
|
83
|
-
flowPara: string = "";
|
|
84
|
-
hashCode: number = 0;
|
|
90
|
+
dataHide: number = 0;
|
|
91
|
+
dataFrom: number = 0;
|
|
85
92
|
kjndKJQJ: number = 0;
|
|
86
|
-
|
|
93
|
+
dataGUID: string = "";
|
|
87
94
|
mastName: string = "";
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
+
mastGUID: string = "";
|
|
96
|
+
createBy: string = "";
|
|
97
|
+
createAt: number = 0;
|
|
98
|
+
updateBy: string = "";
|
|
99
|
+
updateAt: number = 0;
|
|
100
|
+
deleteBy: string = "";
|
|
101
|
+
deleteAt: number = 0;
|
|
102
|
+
undoType: number = 0;
|
|
103
|
+
flowName: string = "";
|
|
95
104
|
tablFrom: string = "";
|
|
96
|
-
|
|
105
|
+
viewFrom: string = "";
|
|
106
|
+
statFrom: string = "";
|
|
107
|
+
unitFrom: string = "";
|
|
97
108
|
undoFrom: string = "";
|
|
109
|
+
entityID: string = "";
|
|
98
110
|
undoMark: string = "";
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
111
|
+
didDoubt: string = "";
|
|
112
|
+
doubtTxt: string = "";
|
|
113
|
+
directAt: number = 0;
|
|
114
|
+
deptFrom: string = "";
|
|
115
|
+
sysClasn: string = "";
|
|
116
|
+
autoNext: number = 0;
|
|
117
|
+
|
|
118
|
+
typeFrom: string = "";
|
|
119
|
+
flowPara: string = "";
|
|
120
|
+
queuesBy: number = 0;
|
|
103
121
|
userFrom: string = "";
|
|
104
|
-
|
|
122
|
+
|
|
123
|
+
cronNameWhenUndo: string = "";
|
|
124
|
+
cronNameWhenNext: string = "";
|
|
125
|
+
cronNameWhenDone: string = "";
|
|
105
126
|
}
|
|
@@ -10,7 +10,10 @@ export interface IFlowNodeResponse {
|
|
|
10
10
|
whoBuild: number;
|
|
11
11
|
userIndx: number;
|
|
12
12
|
nodeIndx: number;
|
|
13
|
+
|
|
13
14
|
flowMain: number;
|
|
15
|
+
flowNode: number; //#value = nodeindx
|
|
16
|
+
|
|
14
17
|
dataStat: number;
|
|
15
18
|
dataHide: number;
|
|
16
19
|
dataOrdr: number;
|
|
@@ -25,95 +28,356 @@ export interface IFlowNodeResponse {
|
|
|
25
28
|
updateAt: number;
|
|
26
29
|
deleteBy: string;
|
|
27
30
|
deleteAt: number;
|
|
28
|
-
startOne: number;
|
|
29
31
|
queuesBy: number;
|
|
30
|
-
nodeName: string;
|
|
31
|
-
nodeMemo: string;
|
|
32
|
-
nodePara: string;
|
|
33
|
-
nodeParaConv: IFlowNodeResponseNodePara;
|
|
34
32
|
entityID: string;
|
|
33
|
+
|
|
34
|
+
/** 节点名称 */
|
|
35
|
+
nodeName: string;
|
|
36
|
+
/** 初始节点 */
|
|
37
|
+
startOne: number;
|
|
38
|
+
/** 等待提示 */
|
|
35
39
|
waitText: string;
|
|
40
|
+
/** 通过提示 */
|
|
36
41
|
doneText: string;
|
|
42
|
+
/** 指定角色 */
|
|
37
43
|
partText: string;
|
|
44
|
+
/** 下游节点 */
|
|
38
45
|
fromText: string;
|
|
39
|
-
|
|
46
|
+
/** 终审条件 */
|
|
40
47
|
voidText: string;
|
|
48
|
+
/** 等待取色 */
|
|
41
49
|
bkColour: string;
|
|
42
50
|
unColour: string;
|
|
43
|
-
|
|
44
|
-
|
|
51
|
+
|
|
52
|
+
verifyDW: number;
|
|
53
|
+
verifyBM: number;
|
|
54
|
+
|
|
55
|
+
forkSize: number;
|
|
56
|
+
/** 分支条件 */
|
|
57
|
+
forkText: string;
|
|
58
|
+
/** 作为主线节点 */
|
|
59
|
+
asMainly: number;
|
|
60
|
+
/** 节点备注 */
|
|
61
|
+
nodeMemo: string;
|
|
62
|
+
/** 作为虚拟节点 */
|
|
63
|
+
dataType: number;
|
|
64
|
+
/** 通过拦截 */
|
|
65
|
+
hookText: string;
|
|
66
|
+
/** 可选节点.计数 */
|
|
45
67
|
nextSize: number;
|
|
68
|
+
/** 可选节点.文本 */
|
|
46
69
|
nextText: string;
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
dataType: number; // #节点类型{0,1:正常节点;2:流转节点}
|
|
51
|
-
todo4URL: string;
|
|
52
|
-
undoFlow: number;
|
|
70
|
+
/** 抄告内容 */
|
|
71
|
+
userNoti: string;
|
|
72
|
+
/** 退回类型 */
|
|
53
73
|
undoType: number;
|
|
54
|
-
|
|
55
|
-
|
|
74
|
+
/** 参数约定 */
|
|
75
|
+
nodePara: string;
|
|
76
|
+
/** 启用并行会签 */
|
|
77
|
+
parallel: number;
|
|
78
|
+
/** 投票通过比例 */
|
|
79
|
+
ratioVal: number;
|
|
80
|
+
|
|
81
|
+
/** 单位类型.文本 */
|
|
56
82
|
unitTypeText: string;
|
|
83
|
+
/** 部门类型.文本 */
|
|
57
84
|
deptTypeText: string;
|
|
58
85
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
dingTodoWhenNext: number;
|
|
64
|
-
dingTodoWhenUndo: number;
|
|
86
|
+
/** 通过跳转 */
|
|
87
|
+
view4URLWhenNext: string;
|
|
88
|
+
/** 退回跳转 */
|
|
89
|
+
view4URLWhenUndo: string;
|
|
65
90
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
userMainWhenReal: string; // #初审时,用户取值;
|
|
69
|
-
unitMainWhenNext: string; // #通过时,单位取值
|
|
70
|
-
deptMainWhenNext: string; // #通过时,部门取值
|
|
71
|
-
userMainWhenNext: string; // #通过时,用户取值
|
|
91
|
+
notiTextWhenNext: string;
|
|
92
|
+
notiTextWhenUndo: string;
|
|
72
93
|
|
|
73
|
-
|
|
74
|
-
|
|
94
|
+
/** 初审时,单位取值 */
|
|
95
|
+
unitMainWhenReal: string;
|
|
96
|
+
/** 初审时,部门取值 */
|
|
97
|
+
deptMainWhenReal: string;
|
|
98
|
+
/** 初审时,用户取值 */
|
|
99
|
+
userMainWhenReal: string;
|
|
100
|
+
/** 初审时,JS脚本取值*/
|
|
101
|
+
jsScriptWhenReal: string;
|
|
102
|
+
/** 通过时,单位取值 */
|
|
103
|
+
unitMainWhenNext: string;
|
|
104
|
+
/** 通过时,部门取值 */
|
|
105
|
+
deptMainWhenNext: string;
|
|
106
|
+
/** 通过时,用户取值 */
|
|
107
|
+
userMainWhenNext: string;
|
|
108
|
+
/** 通过时,JS脚本取值*/
|
|
109
|
+
jsScriptWhenNext: string;
|
|
75
110
|
|
|
76
|
-
|
|
111
|
+
/** 待办跳转 */
|
|
112
|
+
todo4URLWhenNext: string;
|
|
113
|
+
todo4URLWhenUndo: string;
|
|
114
|
+
/** 待办名称 */
|
|
115
|
+
todoNameWhenNext: string;
|
|
116
|
+
todoNameWhenUndo: string;
|
|
117
|
+
allowUntWhenReal: number;
|
|
118
|
+
allowUntWhenNext: number;
|
|
119
|
+
allowDptWhenReal: number;
|
|
120
|
+
/** 通过时,允许指定部门 */
|
|
121
|
+
allowDptWhenNext: number;
|
|
122
|
+
allowUsrWhenReal: number;
|
|
123
|
+
/** 通过时,允许指定用户 */
|
|
124
|
+
allowUsrWhenNext: number;
|
|
77
125
|
|
|
78
|
-
|
|
79
|
-
view4URLWhenUndo: string; // #退回时.跳转约定
|
|
80
|
-
notiTextWhenNext: string; // #通过时.抄告模板
|
|
81
|
-
notiTextWhenUndo: string; // #退回时.抄告模板
|
|
126
|
+
/** 通过模板 */
|
|
82
127
|
cronNameWhenNext: string;
|
|
128
|
+
/** 退回模板 */
|
|
83
129
|
cronNameWhenUndo: string;
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
voidP5pzWhenNext: number;
|
|
87
|
-
bkColourWhenWait: string;
|
|
88
|
-
usesZbhdWhenReal: number;
|
|
89
|
-
usesZnksWhenReal: number;
|
|
130
|
+
/** 终审模板 */
|
|
131
|
+
cronNameWhenDone: string;
|
|
90
132
|
|
|
91
|
-
|
|
92
|
-
|
|
133
|
+
/** 初审时,SQL用户取值 */
|
|
134
|
+
sql4userWhenReal: string;
|
|
135
|
+
/** 初审时,SQL部门取值 */
|
|
136
|
+
sql4deptWhenReal: string;
|
|
137
|
+
/** 通过时,SQL用户取值 */
|
|
138
|
+
sql4userWhenNext: string;
|
|
139
|
+
/** 通过时,SQL部门取值 */
|
|
140
|
+
sql4deptWhenNext: string;
|
|
93
141
|
|
|
94
|
-
|
|
95
|
-
|
|
142
|
+
dingNotiWhenNext: number;
|
|
143
|
+
dingNotiWhenUndo: number;
|
|
144
|
+
dingTodoWhenNext: number;
|
|
145
|
+
dingTodoWhenUndo: number;
|
|
96
146
|
|
|
97
|
-
|
|
98
|
-
|
|
147
|
+
usesNotiWhenNext: number;
|
|
148
|
+
usesNotiWhenUndo: number;
|
|
99
149
|
|
|
150
|
+
/** 指定角色.列表 */
|
|
100
151
|
listPart: IPartResponse[];
|
|
101
|
-
listFrom: IFlowNodeResponse[];
|
|
102
152
|
listDWLX: IDictResponse[]; // 单位类型
|
|
103
153
|
listBMLX: IDictResponse[]; // 部门类型
|
|
154
|
+
/** 下游节点.列表 */
|
|
155
|
+
listFrom: IFlowNodeResponse[];
|
|
156
|
+
/** 可选节点.列表 */
|
|
104
157
|
listNext: IFlowNodeResponse[];
|
|
105
158
|
}
|
|
106
159
|
|
|
160
|
+
// export interface IFlowNodeResponse {
|
|
161
|
+
// whoBuild: number;
|
|
162
|
+
// userIndx: number;
|
|
163
|
+
// nodeIndx: number;
|
|
164
|
+
// flowMain: number;
|
|
165
|
+
// flowNode: number;
|
|
166
|
+
|
|
167
|
+
// dataStat: number;
|
|
168
|
+
// dataHide: number;
|
|
169
|
+
// dataOrdr: number;
|
|
170
|
+
// dataFrom: number;
|
|
171
|
+
// dataDate: number;
|
|
172
|
+
// dataTime: number;
|
|
173
|
+
// mastName: string;
|
|
174
|
+
// mastGUID: string;
|
|
175
|
+
// createBy: string;
|
|
176
|
+
// createAt: number;
|
|
177
|
+
// updateBy: string;
|
|
178
|
+
// updateAt: number;
|
|
179
|
+
// deleteBy: string;
|
|
180
|
+
// deleteAt: number;
|
|
181
|
+
// startOne: number;
|
|
182
|
+
// queuesBy: number;
|
|
183
|
+
|
|
184
|
+
// nodeName: string;
|
|
185
|
+
// nodeMemo: string;
|
|
186
|
+
// nodePara: string;
|
|
187
|
+
// nodeParaConv: IFlowNodeResponseNodePara;
|
|
188
|
+
// entityID: string;
|
|
189
|
+
// waitText: string;
|
|
190
|
+
// doneText: string;
|
|
191
|
+
// partText: string;
|
|
192
|
+
// fromText: string;
|
|
193
|
+
// parallel: number;
|
|
194
|
+
// voidText: string;
|
|
195
|
+
// bkColour: string;
|
|
196
|
+
// unColour: string;
|
|
197
|
+
// verifyDw: number;
|
|
198
|
+
// verifyBm: number;
|
|
199
|
+
// nextSize: number;
|
|
200
|
+
// nextText: string;
|
|
201
|
+
// forkSize: number; // #分支个数
|
|
202
|
+
// forkText: string; // #分支文本
|
|
203
|
+
// asMainly: number; // #是否主线节点
|
|
204
|
+
// dataType: number; // #节点类型{0,1:正常节点;2:流转节点}
|
|
205
|
+
// todo4URL: string;
|
|
206
|
+
// undoFlow: number;
|
|
207
|
+
// undoType: number;
|
|
208
|
+
// directAt: number;
|
|
209
|
+
// parentID: number;
|
|
210
|
+
// unitTypeText: string;
|
|
211
|
+
// deptTypeText: string;
|
|
212
|
+
|
|
213
|
+
// usesNotiWhenNext: number;
|
|
214
|
+
// usesNotiWhenUndo: number;
|
|
215
|
+
// dingNotiWhenNext: number;
|
|
216
|
+
// dingNotiWhenUndo: number;
|
|
217
|
+
// dingTodoWhenNext: number;
|
|
218
|
+
// dingTodoWhenUndo: number;
|
|
219
|
+
|
|
220
|
+
// unitMainWhenReal: string; // #初审时,单位取值;
|
|
221
|
+
// deptMainWhenReal: string; // #初审时,部门取值;
|
|
222
|
+
// userMainWhenReal: string; // #初审时,用户取值;
|
|
223
|
+
// unitMainWhenNext: string; // #通过时,单位取值
|
|
224
|
+
// deptMainWhenNext: string; // #通过时,部门取值
|
|
225
|
+
// userMainWhenNext: string; // #通过时,用户取值
|
|
226
|
+
|
|
227
|
+
// allowUsrWhenReal: number;
|
|
228
|
+
// allowUsrWhenNext: number; // #通过时,允许指定用户
|
|
229
|
+
|
|
230
|
+
// allowDptWhenNext: number; // #通过时,允许指定部门
|
|
231
|
+
|
|
232
|
+
// view4URLWhenNext: string; // #通过时.跳转约定
|
|
233
|
+
// view4URLWhenUndo: string; // #退回时.跳转约定
|
|
234
|
+
// notiTextWhenNext: string; // #通过时.抄告模板
|
|
235
|
+
// notiTextWhenUndo: string; // #退回时.抄告模板
|
|
236
|
+
// cronNameWhenNext: string;
|
|
237
|
+
// cronNameWhenUndo: string;
|
|
238
|
+
|
|
239
|
+
// // #虚拟字段
|
|
240
|
+
// editP5pzWhenReal: number;
|
|
241
|
+
// voidP5pzWhenNext: number;
|
|
242
|
+
// bkColourWhenWait: string;
|
|
243
|
+
// usesZbhdWhenReal: number;
|
|
244
|
+
// usesZnksWhenReal: number;
|
|
245
|
+
|
|
246
|
+
// mustZbhdWhenReal: number;
|
|
247
|
+
// mustZnksWhenReal: number;
|
|
248
|
+
|
|
249
|
+
// usesExpdWhenReal: number;
|
|
250
|
+
// mustExpdWhenReal: number;
|
|
251
|
+
|
|
252
|
+
// finalOutWhenReal: number;
|
|
253
|
+
// set4dialWhenReal: number;
|
|
254
|
+
|
|
255
|
+
// listPart: IPartResponse[];
|
|
256
|
+
// listFrom: IFlowNodeResponse[];
|
|
257
|
+
// listDWLX: IDictResponse[]; // 单位类型
|
|
258
|
+
// listBMLX: IDictResponse[]; // 部门类型
|
|
259
|
+
// listNext: IFlowNodeResponse[];
|
|
260
|
+
// }
|
|
261
|
+
|
|
262
|
+
// export class TFlowNodeResponse implements IFlowNodeResponse {
|
|
263
|
+
// cronNameWhenUndo: string = "";
|
|
264
|
+
// cronNameWhenNext: string = "";
|
|
265
|
+
// nextText: string = "";
|
|
266
|
+
// undoFlow: number = 0;
|
|
267
|
+
// undoType: number = -1;
|
|
268
|
+
// whoBuild: number = 0;
|
|
269
|
+
// userIndx: number = 0;
|
|
270
|
+
// nodeIndx: number = 0;
|
|
271
|
+
// flowMain: number = 0;
|
|
272
|
+
// dataStat: number = 0;
|
|
273
|
+
// dataHide: number = 0;
|
|
274
|
+
// dataOrdr: number = 0;
|
|
275
|
+
// dataFrom: number = 0;
|
|
276
|
+
// dataDate: number = 0;
|
|
277
|
+
// dataTime: number = 0;
|
|
278
|
+
// mastName: string = "";
|
|
279
|
+
// mastGUID: string = "";
|
|
280
|
+
// createBy: string = "";
|
|
281
|
+
// createAt: number = 0;
|
|
282
|
+
// updateBy: string = "";
|
|
283
|
+
// updateAt: number = 0;
|
|
284
|
+
// deleteBy: string = "";
|
|
285
|
+
// deleteAt: number = 0;
|
|
286
|
+
// startOne: number = 0;
|
|
287
|
+
// queuesBy: number = 0;
|
|
288
|
+
// nodeName: string = "";
|
|
289
|
+
// nodeMemo: string = "";
|
|
290
|
+
// nodePara: string = "";
|
|
291
|
+
// nodeParaConv: IFlowNodeResponseNodePara = new TFlowNodeResponseNodePara();
|
|
292
|
+
// entityID: string = "";
|
|
293
|
+
// waitText: string = "";
|
|
294
|
+
// doneText: string = "";
|
|
295
|
+
// partText: string = "";
|
|
296
|
+
// fromText: string = "";
|
|
297
|
+
// parallel: number = 0;
|
|
298
|
+
// voidText: string = "";
|
|
299
|
+
// bkColour: string = "";
|
|
300
|
+
// unColour: string = "";
|
|
301
|
+
// verifyDw: number = 0;
|
|
302
|
+
// verifyBm: number = 0;
|
|
303
|
+
// nextSize: number = 0;
|
|
304
|
+
// forkSize: number = 0; // #分支个数
|
|
305
|
+
// forkText: string = ""; // #分支文本
|
|
306
|
+
// asMainly: number = 0; // #是否主线节点
|
|
307
|
+
// dataType: number = 0; // #节点类型{0,1:正常节点;2:流转节点}
|
|
308
|
+
// todo4URL: string = "";
|
|
309
|
+
// directAt: number = 0;
|
|
310
|
+
// parentID: number = 0;
|
|
311
|
+
// unitTypeText: string = "";
|
|
312
|
+
// deptTypeText: string = "";
|
|
313
|
+
|
|
314
|
+
// usesNotiWhenNext: number = 0;
|
|
315
|
+
// usesNotiWhenUndo: number = 0;
|
|
316
|
+
// dingNotiWhenNext: number = 0;
|
|
317
|
+
// dingNotiWhenUndo: number = 0;
|
|
318
|
+
// dingTodoWhenNext: number = 0;
|
|
319
|
+
// dingTodoWhenUndo: number = 0;
|
|
320
|
+
|
|
321
|
+
// unitMainWhenReal: string = ""; // #初审时,单位取值;
|
|
322
|
+
// deptMainWhenReal: string = ""; // #初审时,部门取值;
|
|
323
|
+
// userMainWhenReal: string = ""; // #初审时,用户取值;
|
|
324
|
+
// unitMainWhenNext: string = ""; // #通过时,单位取值
|
|
325
|
+
// deptMainWhenNext: string = ""; // #通过时,部门取值
|
|
326
|
+
// userMainWhenNext: string = ""; // #通过时,用户取值
|
|
327
|
+
|
|
328
|
+
// allowUsrWhenReal: number = 0;
|
|
329
|
+
// allowUsrWhenNext: number = 0;
|
|
330
|
+
|
|
331
|
+
// allowDptWhenNext: number = 0;
|
|
332
|
+
|
|
333
|
+
// view4URLWhenNext: string = ""; // #通过时.跳转约定
|
|
334
|
+
// view4URLWhenUndo: string = ""; // #退回时.跳转约定
|
|
335
|
+
// notiTextWhenNext: string = ""; // #通过时.抄告模板
|
|
336
|
+
// notiTextWhenUndo: string = ""; // #退回时.抄告模板
|
|
337
|
+
|
|
338
|
+
// // #虚拟字段
|
|
339
|
+
// editP5pzWhenReal: number = 0;
|
|
340
|
+
// voidP5pzWhenNext: number = 0;
|
|
341
|
+
// bkColourWhenWait: string = "";
|
|
342
|
+
// usesZbhdWhenReal: number = 0;
|
|
343
|
+
// usesZnksWhenReal: number = 0;
|
|
344
|
+
|
|
345
|
+
// usesExpdWhenReal: number = 0;
|
|
346
|
+
// mustExpdWhenReal: number = 0;
|
|
347
|
+
|
|
348
|
+
// mustZbhdWhenReal: number = 0;
|
|
349
|
+
// mustZnksWhenReal: number = 0;
|
|
350
|
+
// finalOutWhenReal: number = 0;
|
|
351
|
+
// set4dialWhenReal: number = 0;
|
|
352
|
+
|
|
353
|
+
// listPart: IPartResponse[] = [];
|
|
354
|
+
// listFrom: IFlowNodeResponse[] = [];
|
|
355
|
+
// listDWLX: IDictResponse[] = [];
|
|
356
|
+
// listBMLX: IDictResponse[] = [];
|
|
357
|
+
// listNext: IFlowNodeResponse[] = [];
|
|
358
|
+
|
|
359
|
+
// static parseJson(nodePara: string) {
|
|
360
|
+
// const result = new TFlowNodeResponseNodePara();
|
|
361
|
+
// if (_.isEmpty(nodePara)) {
|
|
362
|
+
// return result;
|
|
363
|
+
// }
|
|
364
|
+
// try {
|
|
365
|
+
// const temp = JSON.parse(nodePara) as TFlowNodeResponseNodePara;
|
|
366
|
+
// return _.merge(result, temp);
|
|
367
|
+
// } catch (e: any) {
|
|
368
|
+
// console.error(e.message);
|
|
369
|
+
// }
|
|
370
|
+
// return result;
|
|
371
|
+
// }
|
|
372
|
+
// }
|
|
373
|
+
|
|
107
374
|
export class TFlowNodeResponse implements IFlowNodeResponse {
|
|
108
|
-
cronNameWhenUndo: string = "";
|
|
109
|
-
cronNameWhenNext: string = "";
|
|
110
|
-
nextText: string = "";
|
|
111
|
-
undoFlow: number = 0;
|
|
112
|
-
undoType: number = -1;
|
|
113
375
|
whoBuild: number = 0;
|
|
114
376
|
userIndx: number = 0;
|
|
115
377
|
nodeIndx: number = 0;
|
|
116
378
|
flowMain: number = 0;
|
|
379
|
+
flowNode: number = 0;
|
|
380
|
+
|
|
117
381
|
dataStat: number = 0;
|
|
118
382
|
dataHide: number = 0;
|
|
119
383
|
dataOrdr: number = 0;
|
|
@@ -128,31 +392,35 @@ export class TFlowNodeResponse implements IFlowNodeResponse {
|
|
|
128
392
|
updateAt: number = 0;
|
|
129
393
|
deleteBy: string = "";
|
|
130
394
|
deleteAt: number = 0;
|
|
395
|
+
|
|
131
396
|
startOne: number = 0;
|
|
132
|
-
queuesBy: number = 0;
|
|
133
397
|
nodeName: string = "";
|
|
134
|
-
nodeMemo: string = "";
|
|
135
|
-
nodePara: string = "";
|
|
136
|
-
nodeParaConv: IFlowNodeResponseNodePara = new TFlowNodeResponseNodePara();
|
|
137
398
|
entityID: string = "";
|
|
138
399
|
waitText: string = "";
|
|
139
400
|
doneText: string = "";
|
|
140
401
|
partText: string = "";
|
|
141
402
|
fromText: string = "";
|
|
142
|
-
parallel: number = 0;
|
|
143
403
|
voidText: string = "";
|
|
144
404
|
bkColour: string = "";
|
|
145
405
|
unColour: string = "";
|
|
146
|
-
|
|
147
|
-
|
|
406
|
+
|
|
407
|
+
verifyDW: number = 0;
|
|
408
|
+
verifyBM: number = 0;
|
|
409
|
+
|
|
410
|
+
queuesBy: number = 0;
|
|
411
|
+
forkSize: number = 0;
|
|
412
|
+
forkText: string = "";
|
|
413
|
+
asMainly: number = 0;
|
|
414
|
+
nodeMemo: string = "";
|
|
415
|
+
dataType: number = 0;
|
|
416
|
+
hookText: string = "";
|
|
417
|
+
userNoti: string = "";
|
|
148
418
|
nextSize: number = 0;
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
directAt: number = 0;
|
|
155
|
-
parentID: number = 0;
|
|
419
|
+
nextText: string = "";
|
|
420
|
+
undoType: number = 0;
|
|
421
|
+
nodePara: string = "";
|
|
422
|
+
parallel: number = 0;
|
|
423
|
+
ratioVal: number = 0;
|
|
156
424
|
unitTypeText: string = "";
|
|
157
425
|
deptTypeText: string = "";
|
|
158
426
|
|
|
@@ -162,56 +430,43 @@ export class TFlowNodeResponse implements IFlowNodeResponse {
|
|
|
162
430
|
dingNotiWhenUndo: number = 0;
|
|
163
431
|
dingTodoWhenNext: number = 0;
|
|
164
432
|
dingTodoWhenUndo: number = 0;
|
|
433
|
+
view4URLWhenNext: string = "";
|
|
434
|
+
view4URLWhenUndo: string = "";
|
|
435
|
+
notiTextWhenNext: string = "";
|
|
436
|
+
notiTextWhenUndo: string = "";
|
|
165
437
|
|
|
166
|
-
unitMainWhenReal: string = "";
|
|
167
|
-
deptMainWhenReal: string = "";
|
|
168
|
-
userMainWhenReal: string = "";
|
|
169
|
-
unitMainWhenNext: string = "";
|
|
170
|
-
deptMainWhenNext: string = "";
|
|
171
|
-
userMainWhenNext: string = "";
|
|
438
|
+
unitMainWhenReal: string = "";
|
|
439
|
+
deptMainWhenReal: string = "";
|
|
440
|
+
userMainWhenReal: string = "";
|
|
441
|
+
unitMainWhenNext: string = "";
|
|
442
|
+
deptMainWhenNext: string = "";
|
|
443
|
+
userMainWhenNext: string = "";
|
|
444
|
+
jsScriptWhenReal: string = "";
|
|
445
|
+
jsScriptWhenNext: string = "";
|
|
172
446
|
|
|
447
|
+
allowUntWhenReal: number = 0;
|
|
448
|
+
allowUntWhenNext: number = 0;
|
|
449
|
+
allowDptWhenReal: number = 0;
|
|
450
|
+
allowDptWhenNext: number = 0;
|
|
173
451
|
allowUsrWhenReal: number = 0;
|
|
174
452
|
allowUsrWhenNext: number = 0;
|
|
175
453
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
notiTextWhenNext: string = ""; // #通过时.抄告模板
|
|
181
|
-
notiTextWhenUndo: string = ""; // #退回时.抄告模板
|
|
182
|
-
|
|
183
|
-
// #虚拟字段
|
|
184
|
-
editP5pzWhenReal: number = 0;
|
|
185
|
-
voidP5pzWhenNext: number = 0;
|
|
186
|
-
bkColourWhenWait: string = "";
|
|
187
|
-
usesZbhdWhenReal: number = 0;
|
|
188
|
-
usesZnksWhenReal: number = 0;
|
|
189
|
-
|
|
190
|
-
usesExpdWhenReal: number = 0;
|
|
191
|
-
mustExpdWhenReal: number = 0;
|
|
454
|
+
todo4URLWhenNext: string = "";
|
|
455
|
+
todo4URLWhenUndo: string = "";
|
|
456
|
+
todoNameWhenNext: string = "";
|
|
457
|
+
todoNameWhenUndo: string = "";
|
|
192
458
|
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
459
|
+
cronNameWhenNext: string = "";
|
|
460
|
+
cronNameWhenUndo: string = "";
|
|
461
|
+
cronNameWhenDone: string = "";
|
|
462
|
+
sql4userWhenReal: string = "";
|
|
463
|
+
sql4userWhenNext: string = "";
|
|
464
|
+
sql4deptWhenReal: string = "";
|
|
465
|
+
sql4deptWhenNext: string = "";
|
|
197
466
|
|
|
198
467
|
listPart: IPartResponse[] = [];
|
|
199
|
-
listFrom: IFlowNodeResponse[] = [];
|
|
200
468
|
listDWLX: IDictResponse[] = [];
|
|
201
469
|
listBMLX: IDictResponse[] = [];
|
|
470
|
+
listFrom: IFlowNodeResponse[] = [];
|
|
202
471
|
listNext: IFlowNodeResponse[] = [];
|
|
203
|
-
|
|
204
|
-
static parseJson(nodePara: string) {
|
|
205
|
-
const result = new TFlowNodeResponseNodePara();
|
|
206
|
-
if (_.isEmpty(nodePara)) {
|
|
207
|
-
return result;
|
|
208
|
-
}
|
|
209
|
-
try {
|
|
210
|
-
const temp = JSON.parse(nodePara) as TFlowNodeResponseNodePara;
|
|
211
|
-
return _.merge(result, temp);
|
|
212
|
-
} catch (e: any) {
|
|
213
|
-
console.error(e.message);
|
|
214
|
-
}
|
|
215
|
-
return result;
|
|
216
|
-
}
|
|
217
472
|
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
export interface IPzptGlfaResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
sourceND: number;
|
|
5
|
+
sourceID: number;
|
|
6
|
+
glfaIndx: number;
|
|
7
|
+
parentID: number;
|
|
8
|
+
hashCode: number;
|
|
9
|
+
dataLevl: number;
|
|
10
|
+
dataFrom: number;
|
|
11
|
+
dataType: number;
|
|
12
|
+
kjndKJQJ: number;
|
|
13
|
+
isLasted: number;
|
|
14
|
+
dataStat: number;
|
|
15
|
+
dataOrdr: number;
|
|
16
|
+
dataHide: number;
|
|
17
|
+
dataDate: number;
|
|
18
|
+
dataTime: number;
|
|
19
|
+
dataGUID: string;
|
|
20
|
+
createBy: string;
|
|
21
|
+
createAt: number;
|
|
22
|
+
updateBy: string;
|
|
23
|
+
updateAt: number;
|
|
24
|
+
deleteBy: string;
|
|
25
|
+
deleteAt: number;
|
|
26
|
+
queuesBy: number;
|
|
27
|
+
entityID: string;
|
|
28
|
+
c1pzKind: number;
|
|
29
|
+
glkmType: number;
|
|
30
|
+
glkmFrom: number;
|
|
31
|
+
typeText: string;
|
|
32
|
+
fromText: string;
|
|
33
|
+
glfaName: string;
|
|
34
|
+
k8kmKmcd: string;
|
|
35
|
+
sourceDb: string;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export class TPzptGlfaResponse implements IPzptGlfaResponse {
|
|
39
|
+
whoBuild: number = 0;
|
|
40
|
+
userIndx: number = 0;
|
|
41
|
+
sourceND: number = 0;
|
|
42
|
+
/** 核算账套 */
|
|
43
|
+
sourceID: number = 0;
|
|
44
|
+
/** 关联方案 */
|
|
45
|
+
glfaIndx: number = 0;
|
|
46
|
+
parentID: number = 0;
|
|
47
|
+
hashCode: number = 0;
|
|
48
|
+
dataLevl: number = 0;
|
|
49
|
+
dataFrom: number = 0;
|
|
50
|
+
dataType: number = 0;
|
|
51
|
+
kjndKJQJ: number = 0;
|
|
52
|
+
isLasted: number = 0;
|
|
53
|
+
dataStat: number = 0;
|
|
54
|
+
dataOrdr: number = 0;
|
|
55
|
+
dataHide: number = 0;
|
|
56
|
+
dataDate: number = 0;
|
|
57
|
+
dataTime: number = 0;
|
|
58
|
+
dataGUID: string = "";
|
|
59
|
+
createBy: string = "";
|
|
60
|
+
createAt: number = 0;
|
|
61
|
+
updateBy: string = "";
|
|
62
|
+
updateAt: number = 0;
|
|
63
|
+
deleteBy: string = "";
|
|
64
|
+
deleteAt: number = 0;
|
|
65
|
+
queuesBy: number = 0;
|
|
66
|
+
entityID: string = "";
|
|
67
|
+
c1pzKind: number = 0;
|
|
68
|
+
glkmType: number = 0;
|
|
69
|
+
glkmFrom: number = 0;
|
|
70
|
+
typeText: string = "";
|
|
71
|
+
fromText: string = "";
|
|
72
|
+
glfaName: string = "";
|
|
73
|
+
k8kmKmcd: string = "";
|
|
74
|
+
sourceDb: string = "";
|
|
75
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
export interface IPzptGlkmResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
sourceND: number;
|
|
5
|
+
sourceID: number;
|
|
6
|
+
glfaIndx: number;
|
|
7
|
+
glkmIndx: number;
|
|
8
|
+
dataStat: number;
|
|
9
|
+
dataHide: number;
|
|
10
|
+
dataOrdr: number;
|
|
11
|
+
dataFrom: number;
|
|
12
|
+
dataType: number;
|
|
13
|
+
dataDate: number;
|
|
14
|
+
dataTime: number;
|
|
15
|
+
createBy: string;
|
|
16
|
+
createAt: number;
|
|
17
|
+
updateBy: string;
|
|
18
|
+
updateAt: number;
|
|
19
|
+
deleteBy: string;
|
|
20
|
+
deleteAt: number;
|
|
21
|
+
glkmYefx: string;
|
|
22
|
+
glkmMemo: string;
|
|
23
|
+
|
|
24
|
+
/** 科目标识(左) */
|
|
25
|
+
cwkmKmid: number;
|
|
26
|
+
/** 科目编码(左) */
|
|
27
|
+
cwkmKmbm: string;
|
|
28
|
+
/** 科目名称(左) */
|
|
29
|
+
cwkmKmmc: string;
|
|
30
|
+
|
|
31
|
+
/** 科目标识(右) */
|
|
32
|
+
yskmKmid: number;
|
|
33
|
+
/** 科目编码(右) */
|
|
34
|
+
yskmKmbm: string;
|
|
35
|
+
/** 科目名称(右) */
|
|
36
|
+
yskmKmmc: string;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export class TPzptGlkmResponse implements IPzptGlkmResponse {
|
|
40
|
+
whoBuild: number = 0;
|
|
41
|
+
userIndx: number = 0;
|
|
42
|
+
sourceND: number = 0;
|
|
43
|
+
sourceID: number = 0;
|
|
44
|
+
glfaIndx: number = 0;
|
|
45
|
+
glkmIndx: number = 0;
|
|
46
|
+
dataStat: number = 0;
|
|
47
|
+
dataHide: number = 0;
|
|
48
|
+
dataOrdr: number = 0;
|
|
49
|
+
dataFrom: number = 0;
|
|
50
|
+
dataType: number = 0;
|
|
51
|
+
dataDate: number = 0;
|
|
52
|
+
dataTime: number = 0;
|
|
53
|
+
createBy: string = "";
|
|
54
|
+
createAt: number = 0;
|
|
55
|
+
updateBy: string = "";
|
|
56
|
+
updateAt: number = 0;
|
|
57
|
+
deleteBy: string = "";
|
|
58
|
+
deleteAt: number = 0;
|
|
59
|
+
glkmYefx: string = "";
|
|
60
|
+
glkmMemo: string = "";
|
|
61
|
+
|
|
62
|
+
/** 科目标识(左) */
|
|
63
|
+
cwkmKmid: number = 0;
|
|
64
|
+
/** 科目编码(左) */
|
|
65
|
+
cwkmKmbm: string = "";
|
|
66
|
+
/** 科目名称(左) */
|
|
67
|
+
cwkmKmmc: string = "";
|
|
68
|
+
|
|
69
|
+
/** 科目标识(右) */
|
|
70
|
+
yskmKmid: number = 0;
|
|
71
|
+
/** 科目编码(右) */
|
|
72
|
+
yskmKmbm: string = "";
|
|
73
|
+
/** 科目名称(右) */
|
|
74
|
+
yskmKmmc: string = "";
|
|
75
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
export interface IPzptGlkmfdResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
sourceND: number;
|
|
5
|
+
sourceID: number;
|
|
6
|
+
glfaIndx: number;
|
|
7
|
+
glkmIndx: number;
|
|
8
|
+
glkmZdid: number;
|
|
9
|
+
dataStat: number;
|
|
10
|
+
dataHide: number;
|
|
11
|
+
dataOrdr: number;
|
|
12
|
+
dataFrom: number;
|
|
13
|
+
dataType: number;
|
|
14
|
+
dataDate: number;
|
|
15
|
+
dataTime: number;
|
|
16
|
+
createBy: string;
|
|
17
|
+
createAt: number;
|
|
18
|
+
updateBy: string;
|
|
19
|
+
updateAt: number;
|
|
20
|
+
deleteBy: string;
|
|
21
|
+
deleteAt: number;
|
|
22
|
+
k8kmKmid: number;
|
|
23
|
+
k8kmKJND: number;
|
|
24
|
+
k8kmKmbm: string;
|
|
25
|
+
k8kmKmmc: string;
|
|
26
|
+
k8kmFull: string;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export class TPzptGlkmfdResponse implements IPzptGlkmfdResponse {
|
|
30
|
+
whoBuild: number = 0;
|
|
31
|
+
userIndx: number = 0;
|
|
32
|
+
sourceND: number = 0;
|
|
33
|
+
sourceID: number = 0;
|
|
34
|
+
glfaIndx: number = 0;
|
|
35
|
+
glkmIndx: number = 0;
|
|
36
|
+
glkmZdid: number = 0;
|
|
37
|
+
dataStat: number = 0;
|
|
38
|
+
dataHide: number = 0;
|
|
39
|
+
dataOrdr: number = 0;
|
|
40
|
+
dataFrom: number = 0;
|
|
41
|
+
dataType: number = 0;
|
|
42
|
+
dataDate: number = 0;
|
|
43
|
+
dataTime: number = 0;
|
|
44
|
+
createBy: string = "";
|
|
45
|
+
createAt: number = 0;
|
|
46
|
+
updateBy: string = "";
|
|
47
|
+
updateAt: number = 0;
|
|
48
|
+
deleteBy: string = "";
|
|
49
|
+
deleteAt: number = 0;
|
|
50
|
+
k8kmKmid: number = 0;
|
|
51
|
+
k8kmKJND: number = 0;
|
|
52
|
+
k8kmKmbm: string = "";
|
|
53
|
+
k8kmKmmc: string = "";
|
|
54
|
+
k8kmFull: string = "";
|
|
55
|
+
}
|
|
56
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export interface IPzptGlkmzdResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
sourceND: number;
|
|
5
|
+
sourceID: number;
|
|
6
|
+
glfaIndx: number;
|
|
7
|
+
glkmIndx: number;
|
|
8
|
+
glkmZdid: number;
|
|
9
|
+
dataStat: number;
|
|
10
|
+
dataHide: number;
|
|
11
|
+
dataOrdr: number;
|
|
12
|
+
dataFrom: number;
|
|
13
|
+
dataType: number;
|
|
14
|
+
dataDate: number;
|
|
15
|
+
dataTime: number;
|
|
16
|
+
createBy: string;
|
|
17
|
+
createAt: number;
|
|
18
|
+
updateBy: string;
|
|
19
|
+
updateAt: number;
|
|
20
|
+
deleteBy: string;
|
|
21
|
+
deleteAt: number;
|
|
22
|
+
k8kmKmid: number;
|
|
23
|
+
k8kmKJND: number;
|
|
24
|
+
k8kmKmbm: string;
|
|
25
|
+
k8kmKmmc: string;
|
|
26
|
+
k8kmFull: string;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export class TPzptGlkmzdResponse implements IPzptGlkmzdResponse {
|
|
30
|
+
whoBuild: number = 0;
|
|
31
|
+
userIndx: number = 0;
|
|
32
|
+
sourceND: number = 0;
|
|
33
|
+
sourceID: number = 0;
|
|
34
|
+
glfaIndx: number = 0;
|
|
35
|
+
glkmIndx: number = 0;
|
|
36
|
+
glkmZdid: number = 0;
|
|
37
|
+
dataStat: number = 0;
|
|
38
|
+
dataHide: number = 0;
|
|
39
|
+
dataOrdr: number = 0;
|
|
40
|
+
dataFrom: number = 0;
|
|
41
|
+
dataType: number = 0;
|
|
42
|
+
dataDate: number = 0;
|
|
43
|
+
dataTime: number = 0;
|
|
44
|
+
createBy: string = "";
|
|
45
|
+
createAt: number = 0;
|
|
46
|
+
updateBy: string = "";
|
|
47
|
+
updateAt: number = 0;
|
|
48
|
+
deleteBy: string = "";
|
|
49
|
+
deleteAt: number = 0;
|
|
50
|
+
k8kmKmid: number = 0;
|
|
51
|
+
k8kmKJND: number = 0;
|
|
52
|
+
k8kmKmbm: string = "";
|
|
53
|
+
k8kmKmmc: string = "";
|
|
54
|
+
k8kmFull: string = "";
|
|
55
|
+
}
|