@ningboyz/types 1.0.61 → 1.0.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/card/index.ts +4 -1
- package/src/const/const_hznt.ts +11 -0
- package/src/myoa/index.ts +10 -1
- package/src/yzcb/index.ts +10 -1
- package/src/yzcg/index.ts +13 -1
package/package.json
CHANGED
package/src/card/index.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { IZcczResponse, TZcczResponse } from "./IZcczResponse";
|
|
|
7
7
|
import { IZcdbResponse, TZcdbResponse } from "./IZcdbResponse";
|
|
8
8
|
import { IZclbResponse, TZclbResponse } from "./IZclbResponse";
|
|
9
9
|
import { IZczjPropResponse, TZczjPropResponse } from "./IZczjPropResponse";
|
|
10
|
+
import { TSyszclbgblbResponse, ISyszclbgblbResponse } from "./ISyszclbgblbResponse";
|
|
10
11
|
import { IZczjResponse, TZczjResponse } from "./IZczjResponse";
|
|
11
12
|
import { IRangeVal, ICardMainFindResponse, TRangeVal, TCardMainFindResponse } from "./ICardMainFindResponse";
|
|
12
13
|
|
|
@@ -23,6 +24,7 @@ export {
|
|
|
23
24
|
type IZclbResponse,
|
|
24
25
|
type IZczjPropResponse,
|
|
25
26
|
type IZczjResponse,
|
|
27
|
+
type ISyszclbgblbResponse,
|
|
26
28
|
TCardMainFindResponse,
|
|
27
29
|
TCardMainResponse,
|
|
28
30
|
TGblbResponse,
|
|
@@ -34,5 +36,6 @@ export {
|
|
|
34
36
|
TZcdbResponse,
|
|
35
37
|
TZclbResponse,
|
|
36
38
|
TZczjPropResponse,
|
|
37
|
-
TZczjResponse
|
|
39
|
+
TZczjResponse,
|
|
40
|
+
TSyszclbgblbResponse
|
|
38
41
|
};
|
package/src/const/const_hznt.ts
CHANGED
|
@@ -18,6 +18,16 @@ export const CONST_MODULE_NOTI_FWDJ = "CONST_MODULE_NOTI_FWDJ";
|
|
|
18
18
|
*/
|
|
19
19
|
export const CONST_MODULE_NOTI_FWSH = "CONST_MODULE_NOTI_FWSH";
|
|
20
20
|
|
|
21
|
+
/**
|
|
22
|
+
* 财政业务审批系统-信息公开登记
|
|
23
|
+
*/
|
|
24
|
+
export const CONST_MODULE_NOTI_GKDJ = "CONST_MODULE_NOTI_GKDJ";
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* 财政业务审批系统-信息公开审核
|
|
28
|
+
*/
|
|
29
|
+
export const CONST_MODULE_NOTI_GKSH = "CONST_MODULE_NOTI_GKSH";
|
|
30
|
+
|
|
21
31
|
/**财政业务审批系统-外宣发布登记 */
|
|
22
32
|
export const CONST_MODULE_NOTI_FBDJ = "CONST_MODULE_NOTI_FBDJ";
|
|
23
33
|
|
|
@@ -46,5 +56,6 @@ export const CONST_MODULE_MYOA_GZSH = "CONST_MODULE_MYOA_GZSH";
|
|
|
46
56
|
|
|
47
57
|
export const CONST_NOTI_PART_TO_收文 = 3015; //#收文
|
|
48
58
|
export const CONST_NOTI_PART_TO_发文 = 3016; //#发文
|
|
59
|
+
export const CONST_NOTI_PART_TO_信息公开 = 3017 // #信息公开|上城财政
|
|
49
60
|
export const CONST_NOTI_PART_TO_外宣发布 = 3018; //#外宣发布|上城财政
|
|
50
61
|
export const CONST_MYOA_MAIN_MYOA_TYPC_上城财政_盖章 = 1010; // #盖章|上城财政
|
package/src/myoa/index.ts
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
1
|
import { IMyoaMainResponse, TMyoaMainResponse } from "./IMyoaMainResponse";
|
|
2
|
+
import { IMyoaCashResponse, TMyoaCashResponse } from "./IMyoaCashResponse";
|
|
3
|
+
import { IMyoaPGDWResponse, TMyoaPGDWResponse } from "./IMyoaPGDWResponse";
|
|
2
4
|
|
|
3
|
-
export {
|
|
5
|
+
export {
|
|
6
|
+
type IMyoaMainResponse,
|
|
7
|
+
type IMyoaCashResponse,
|
|
8
|
+
type IMyoaPGDWResponse,
|
|
9
|
+
TMyoaMainResponse,
|
|
10
|
+
TMyoaCashResponse,
|
|
11
|
+
TMyoaPGDWResponse
|
|
12
|
+
};
|
package/src/yzcb/index.ts
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
1
|
import { ICbjgMainResponse, TCbjgMainResponse } from "./ICbjgMainResponse";
|
|
2
|
+
import { IYzcbBillResponse, TYzcbBillResponse } from "./IYzcbBillResponse";
|
|
3
|
+
import { IYzcbMainResponse, TYzcbMainResponse } from "./IYzcbMainResponse";
|
|
2
4
|
|
|
3
|
-
export {
|
|
5
|
+
export {
|
|
6
|
+
type ICbjgMainResponse,
|
|
7
|
+
type IYzcbBillResponse,
|
|
8
|
+
type IYzcbMainResponse,
|
|
9
|
+
TCbjgMainResponse,
|
|
10
|
+
TYzcbBillResponse,
|
|
11
|
+
TYzcbMainResponse
|
|
12
|
+
};
|
package/src/yzcg/index.ts
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
1
|
import { IYzcgMainResponse, TYzcgMainResponse } from "./IYzcgMainResponse";
|
|
2
|
+
import { IYzcgBillResponse, TYzcgBillResponse } from "./IYzcgBillResponse";
|
|
3
|
+
import { IYzcgGshdResponse, TYzcgGshdResponse } from "./IYzcgGshdResponse";
|
|
4
|
+
import { IYzcgLockResponse, TYzcgLockResponse } from "./IYzcgLockResponse";
|
|
2
5
|
|
|
3
|
-
export {
|
|
6
|
+
export {
|
|
7
|
+
type IYzcgMainResponse,
|
|
8
|
+
type IYzcgBillResponse,
|
|
9
|
+
type IYzcgGshdResponse,
|
|
10
|
+
type IYzcgLockResponse,
|
|
11
|
+
TYzcgMainResponse,
|
|
12
|
+
TYzcgBillResponse,
|
|
13
|
+
TYzcgGshdResponse,
|
|
14
|
+
TYzcgLockResponse
|
|
15
|
+
};
|