@ningboyz/types 1.1.60 → 1.1.62
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/conf/IConfig.ts +4 -0
- package/src/noti/INotiMainResponse.ts +10 -0
package/package.json
CHANGED
package/src/conf/IConfig.ts
CHANGED
|
@@ -170,6 +170,10 @@ export interface INotiMainResponse {
|
|
|
170
170
|
* 密级
|
|
171
171
|
*/
|
|
172
172
|
secretID: number;
|
|
173
|
+
/**
|
|
174
|
+
* 密级文本
|
|
175
|
+
*/
|
|
176
|
+
secretText: string;
|
|
173
177
|
/**
|
|
174
178
|
* 保密期限
|
|
175
179
|
*/
|
|
@@ -178,6 +182,10 @@ export interface INotiMainResponse {
|
|
|
178
182
|
* 紧急程度
|
|
179
183
|
*/
|
|
180
184
|
urgentID: number;
|
|
185
|
+
/**
|
|
186
|
+
* 紧急程度文本
|
|
187
|
+
*/
|
|
188
|
+
urgentText: string;
|
|
181
189
|
/**
|
|
182
190
|
* 是否督办
|
|
183
191
|
*/
|
|
@@ -337,8 +345,10 @@ export class TNotiMainResponse implements INotiMainResponse {
|
|
|
337
345
|
zdField3: number = 0;
|
|
338
346
|
zdField4: number = 0;
|
|
339
347
|
secretID: number = 0;
|
|
348
|
+
secretText: string = "";
|
|
340
349
|
secretAt: number = 0;
|
|
341
350
|
urgentID: number = 0;
|
|
351
|
+
urgentText: string = "";
|
|
342
352
|
deadLock: number = 0;
|
|
343
353
|
fileDate: number = 0;
|
|
344
354
|
usePaper: string = "";
|