@ningboyz/types 1.0.153 → 1.0.154
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
CHANGED
|
@@ -169,7 +169,7 @@ export interface INotiMainResponse {
|
|
|
169
169
|
/**
|
|
170
170
|
* 密级
|
|
171
171
|
*/
|
|
172
|
-
secretID:
|
|
172
|
+
secretID: string;
|
|
173
173
|
/**
|
|
174
174
|
* 保密期限
|
|
175
175
|
*/
|
|
@@ -185,7 +185,7 @@ export interface INotiMainResponse {
|
|
|
185
185
|
/**
|
|
186
186
|
* 来文日期
|
|
187
187
|
*/
|
|
188
|
-
fileDate:
|
|
188
|
+
fileDate: number;
|
|
189
189
|
/**
|
|
190
190
|
* 纸质分送
|
|
191
191
|
*/
|
|
@@ -324,11 +324,11 @@ export class TNotiMainResponse implements INotiMainResponse {
|
|
|
324
324
|
zdField2: number = 0;
|
|
325
325
|
zdField3: number = 0;
|
|
326
326
|
zdField4: number = 0;
|
|
327
|
-
secretID:
|
|
327
|
+
secretID: string = "";
|
|
328
328
|
secretAt: string = "";
|
|
329
329
|
urgentID: number = 0;
|
|
330
330
|
deadLock: number = 0;
|
|
331
|
-
fileDate:
|
|
331
|
+
fileDate: number = 0;
|
|
332
332
|
usePaper: string = "";
|
|
333
333
|
usesNoti: string = "";
|
|
334
334
|
|
|
@@ -55,7 +55,10 @@ export interface IPzptCnfgResponse {
|
|
|
55
55
|
cnfgText: string;
|
|
56
56
|
targetDb: string;
|
|
57
57
|
cnfgCode: string;
|
|
58
|
-
|
|
58
|
+
/**
|
|
59
|
+
* 单位类型
|
|
60
|
+
*/
|
|
61
|
+
unitTypeText: string;
|
|
59
62
|
editItemWhenVoid: number;
|
|
60
63
|
editItemWhenP5pz: number; // 允许修改辅助核算
|
|
61
64
|
findK8kmWhenP2pz: number;
|
|
@@ -93,7 +96,10 @@ export class TPzptCnfgResponse implements IPzptCnfgResponse {
|
|
|
93
96
|
dataHide: number = 0;
|
|
94
97
|
dataGUID: string = "";
|
|
95
98
|
mastName: string = "";
|
|
96
|
-
|
|
99
|
+
/**
|
|
100
|
+
* 单位类型
|
|
101
|
+
*/
|
|
102
|
+
unitTypeText: string = "";
|
|
97
103
|
mastGUID: string = "";
|
|
98
104
|
createBy: string = "";
|
|
99
105
|
createAt: number = 0;
|