@ningboyz/apis 1.0.12 → 1.0.13

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.
Files changed (67) hide show
  1. package/.prettierignore +0 -0
  2. package/.prettierrc +15 -0
  3. package/index.ts +30 -14
  4. package/package.json +4 -9
  5. package/src/antv/cnfg.ts +52 -0
  6. package/src/antv/index.ts +19 -0
  7. package/src/antv/main.ts +62 -0
  8. package/src/antv/para.ts +53 -0
  9. package/src/axios.ts +47 -38
  10. package/src/card/form.ts +18 -0
  11. package/src/card/gblb.ts +47 -3
  12. package/src/card/index.ts +18 -3
  13. package/src/card/main.ts +181 -11
  14. package/src/card/p4pz.ts +145 -0
  15. package/src/card/zcbd.ts +83 -7
  16. package/src/card/zccf.ts +87 -7
  17. package/src/card/zccz.ts +79 -7
  18. package/src/card/zcdb.ts +107 -7
  19. package/src/card/zclb.ts +75 -0
  20. package/src/card/zczj.ts +26 -0
  21. package/src/card/zczjProp.ts +28 -0
  22. package/src/cnfg/index.ts +3 -3
  23. package/src/core/dept.ts +65 -9
  24. package/src/core/dict.ts +8 -0
  25. package/src/core/index.ts +9 -6
  26. package/src/core/laid.ts +96 -0
  27. package/src/core/part.ts +3 -3
  28. package/src/core/path.ts +24 -1
  29. package/src/core/sysmenu.ts +9 -7
  30. package/src/core/tsystravel.ts +47 -0
  31. package/src/core/unit.ts +35 -6
  32. package/src/core/user.ts +53 -2
  33. package/src/expd/index.ts +3 -3
  34. package/src/flow/flow.ts +99 -0
  35. package/src/flow/index.ts +6 -3
  36. package/src/flow/node.ts +7 -2
  37. package/src/gams/index.ts +3 -3
  38. package/src/grow/grow.ts +17 -0
  39. package/src/grow/index.ts +13 -0
  40. package/src/gzjg/index.ts +3 -3
  41. package/src/gztb/index.ts +13 -0
  42. package/src/gztb/main.ts +18 -0
  43. package/src/load/index.ts +3 -3
  44. package/src/noti/index.ts +13 -0
  45. package/src/noti/main.ts +49 -0
  46. package/src/ocri/index.ts +3 -3
  47. package/src/pzpt/index.ts +3 -3
  48. package/src/tabl/index.ts +3 -3
  49. package/src/tabl/main.ts +47 -11
  50. package/src/task/index.ts +13 -0
  51. package/src/task/main.ts +26 -0
  52. package/src/wldy/index.ts +3 -3
  53. package/src/wldy/item.ts +3 -2
  54. package/src/wldy/page.ts +11 -0
  55. package/src/wtui/ctrl.ts +43 -0
  56. package/src/wtui/form.ts +74 -0
  57. package/src/wtui/index.ts +26 -5
  58. package/src/wtui/item.ts +78 -0
  59. package/src/wtui/main.ts +5 -2
  60. package/src/wtui/menu.ts +44 -0
  61. package/src/wtui/node.ts +66 -0
  62. package/src/wtui/todo.ts +4 -1
  63. package/src/wtui/user.ts +33 -0
  64. package/src/wtui/view.ts +9 -3
  65. package/src/wtui/zone.ts +61 -0
  66. package/src/core/place.ts +0 -51
  67. /package/src/wtui/{tenvr.ts → envr.ts} +0 -0
File without changes
package/.prettierrc ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "printWidth": 200,
3
+ "tabWidth": 2,
4
+ "useTabs": false,
5
+ "semi": true,
6
+ "singleQuote": false,
7
+ "trailingComma": "none",
8
+ "bracketSpacing": true,
9
+ "bracketSameLine": true,
10
+ "arrowParens": "always",
11
+ "htmlWhitespaceSensitivity": "ignore",
12
+ "vueIndentScriptAndStyle": false,
13
+ "endOfLine": "auto",
14
+ "singleAttributePerLine": false
15
+ }
package/index.ts CHANGED
@@ -11,6 +11,12 @@ import CardRequest from "./src/card";
11
11
  import CnfgRequest from "./src/cnfg";
12
12
  import LoadRequest from "./src/load";
13
13
  import OcriRequest from "./src/ocri";
14
+ import GrowRequest from "./src/grow";
15
+ import TaskRequest from "./src/task";
16
+ import GztbRequest from "./src/gztb/index";
17
+ import AntvRequest from "./src/antv/index";
18
+ import NotiRequest from "./src/noti/index";
19
+ import { IAxiosConfig } from "./src/axios";
14
20
 
15
21
  class Request {
16
22
  public static core: CoreRequest;
@@ -26,21 +32,31 @@ class Request {
26
32
  public static cnfg: CnfgRequest;
27
33
  public static load: LoadRequest;
28
34
  public static ocri: OcriRequest;
35
+ public static grow: GrowRequest;
36
+ public static task: TaskRequest;
37
+ public static gztb: GztbRequest;
38
+ public static antv: AntvRequest;
39
+ public static noti: NotiRequest;
29
40
 
30
- public static createRequest(baseURL: string) {
31
- this.core = new CoreRequest(baseURL);
32
- this.flow = new FLowRequest(baseURL);
33
- this.wtui = new WtuiRequest(baseURL);
34
- this.pzpt = new PzptRequest(baseURL);
35
- this.expd = new ExpdRequest(baseURL);
36
- this.gams = new GamsRequest(baseURL);
37
- this.wldy = new WldyRequest(baseURL);
38
- this.gzjg = new GzjgRequest(baseURL);
39
- this.tabl = new TablRequest(baseURL);
40
- this.card = new CardRequest(baseURL);
41
- this.cnfg = new CnfgRequest(baseURL);
42
- this.load = new LoadRequest(baseURL);
43
- this.ocri = new OcriRequest(baseURL);
41
+ public static createRequest(config: IAxiosConfig) {
42
+ this.core = new CoreRequest(config);
43
+ this.flow = new FLowRequest(config);
44
+ this.wtui = new WtuiRequest(config);
45
+ this.pzpt = new PzptRequest(config);
46
+ this.expd = new ExpdRequest(config);
47
+ this.gams = new GamsRequest(config);
48
+ this.wldy = new WldyRequest(config);
49
+ this.gzjg = new GzjgRequest(config);
50
+ this.tabl = new TablRequest(config);
51
+ this.card = new CardRequest(config);
52
+ this.cnfg = new CnfgRequest(config);
53
+ this.load = new LoadRequest(config);
54
+ this.ocri = new OcriRequest(config);
55
+ this.grow = new GrowRequest(config);
56
+ this.task = new TaskRequest(config);
57
+ this.gztb = new GztbRequest(config);
58
+ this.antv = new AntvRequest(config);
59
+ this.noti = new NotiRequest(config);
44
60
  }
45
61
  }
46
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/apis",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "private": false,
5
5
  "description": "宁波甬政请求库",
6
6
  "author": "",
@@ -16,13 +16,8 @@
16
16
  "registry": "https://registry.npmjs.org/"
17
17
  },
18
18
  "dependencies": {
19
- "@types/lodash": "4.17.13",
20
- "axios": "1.7.7",
21
- "lodash": "4.17.21",
22
- "@ningboyz/types": "workspace:^",
23
- "@ningboyz/utils": "workspace:^"
19
+ "@ningboyz/types": "^1.0.30",
20
+ "axios": "^1.8.4"
24
21
  },
25
- "devDependencies": {
26
-
27
- }
22
+ "devDependencies": {}
28
23
  }
@@ -0,0 +1,52 @@
1
+ import { TAntv } from "@ningboyz/types";
2
+ import type { HttpRequest } from "../axios";
3
+
4
+ class ParaRequest {
5
+ private httpRequest: HttpRequest;
6
+ constructor(httpRequest: HttpRequest) {
7
+ this.httpRequest = httpRequest;
8
+ }
9
+
10
+ /**
11
+ * 获取数字提取列表
12
+ */
13
+ selectdb(antvmain: number) {
14
+ const params = {
15
+ antvmain
16
+ };
17
+ return this.httpRequest.post<TAntv.IAntvCnfgResponse[]>("/antv/tcnfg/selectdb", undefined, params);
18
+ }
19
+
20
+ /**
21
+ * 新增数字提取列表
22
+ */
23
+ insertdb(data: object) {
24
+ return this.httpRequest.post<TAntv.IAntvCnfgResponse[]>("/antv/tcnfg/insertdb", data, undefined);
25
+ }
26
+
27
+ /**
28
+ * 修改数字提取列表
29
+ */
30
+ updatedb(data: object) {
31
+ return this.httpRequest.post<TAntv.IAntvCnfgResponse[]>("/antv/tcnfg/updatedb", data, undefined);
32
+ }
33
+
34
+ /**
35
+ * 删除数字提取列表
36
+ */
37
+ deletedb(data: object) {
38
+ return this.httpRequest.post<TAntv.IAntvCnfgResponse[]>("/antv/tcnfg/deletedb", data, undefined);
39
+ }
40
+
41
+ /**
42
+ * 获取数字提取详情列表
43
+ */
44
+ detaildb(antvmain: number) {
45
+ const params = {
46
+ antvmain
47
+ };
48
+ return this.httpRequest.post<TAntv.IAntvCnfgResponse[]>("/antv/tcnfg/detaildb", undefined, params);
49
+ }
50
+ }
51
+
52
+ export default ParaRequest;
@@ -0,0 +1,19 @@
1
+ import { createRequest, IAxiosConfig } from "../axios";
2
+ import MainRequest from "./main";
3
+ import CnfgRequest from "./cnfg";
4
+ import ParaRequest from "./para";
5
+
6
+ class AntvRequest {
7
+ public main: MainRequest;
8
+ public cnfg: CnfgRequest;
9
+ public para: ParaRequest;
10
+
11
+ constructor(config: IAxiosConfig) {
12
+ const request = createRequest(config);
13
+ this.main = new MainRequest(request);
14
+ this.cnfg = new CnfgRequest(request);
15
+ this.para = new ParaRequest(request);
16
+ }
17
+ }
18
+
19
+ export default AntvRequest;
@@ -0,0 +1,62 @@
1
+ import { TAntv } from "@ningboyz/types";
2
+ import type { HttpRequest } from "../axios";
3
+
4
+ class ParaRequest {
5
+ private httpRequest: HttpRequest;
6
+ constructor(httpRequest: HttpRequest) {
7
+ this.httpRequest = httpRequest;
8
+ }
9
+
10
+ /**
11
+ * 获取数字提取类型列表
12
+ */
13
+ selectdb() {
14
+ return this.httpRequest.post<TAntv.IAntvMainResponse[]>("/antv/tmain/selectdb");
15
+ }
16
+
17
+ /**
18
+ * 新增数字提取类型列表
19
+ */
20
+ insertdb(data: object) {
21
+ return this.httpRequest.post<TAntv.IAntvMainResponse[]>("/antv/tmain/insertdb", data, undefined);
22
+ }
23
+
24
+ /**
25
+ * 修改数字提取类型列表
26
+ */
27
+ updatedb(data: object) {
28
+ return this.httpRequest.post<TAntv.IAntvMainResponse[]>("/antv/tmain/updatedb", data, undefined);
29
+ }
30
+
31
+ /**
32
+ * 删除数字提取类型列表
33
+ */
34
+ deletedb(data: object) {
35
+ return this.httpRequest.post<TAntv.IAntvMainResponse[]>("/antv/tmain/deletedb", data, undefined);
36
+ }
37
+
38
+ /**
39
+ * 删除数字提取类型列表
40
+ */
41
+ detaildb(antvmain: number) {
42
+ const params = {
43
+ antvmain
44
+ };
45
+ return this.httpRequest.post<TAntv.IAntvMainResponse[]>("/antv/tmain/detaildb", undefined, params);
46
+ }
47
+
48
+ /**
49
+ * 动态取数
50
+ */
51
+ get5data(antvname: string, cnfgname: string, unitTypeText: string, cnfgPara?: any) {
52
+ const params = {
53
+ antvname,
54
+ cnfgname,
55
+ unitTypeText,
56
+ ...cnfgPara
57
+ };
58
+ return this.httpRequest.post<any>("/gapi/antv/tmain/get5data", undefined, params);
59
+ }
60
+ }
61
+
62
+ export default ParaRequest;
@@ -0,0 +1,53 @@
1
+ import { TAntv } from "@ningboyz/types";
2
+ import type { HttpRequest } from "../axios";
3
+
4
+ class ParaRequest {
5
+ private httpRequest: HttpRequest;
6
+ constructor(httpRequest: HttpRequest) {
7
+ this.httpRequest = httpRequest;
8
+ }
9
+
10
+ /**
11
+ * 获取数字提取参数列表
12
+ */
13
+ selectdb(antvmain: number, antvcnfg: number) {
14
+ const params = {
15
+ antvmain,
16
+ antvcnfg
17
+ };
18
+ return this.httpRequest.post<TAntv.IAntvParaResponse[]>("/antv/tpara/selectdb", undefined, params);
19
+ }
20
+
21
+ /**
22
+ * 新增数字提取参数列表
23
+ */
24
+ insertdb(data: object) {
25
+ return this.httpRequest.post<TAntv.IAntvParaResponse[]>("/antv/tpara/insertdb", data, undefined);
26
+ }
27
+
28
+ /**
29
+ * 修改数字提取参数列表
30
+ */
31
+ updatedb(data: object) {
32
+ return this.httpRequest.post<TAntv.IAntvParaResponse[]>("/antv/tpara/updatedb", data, undefined);
33
+ }
34
+
35
+ /**
36
+ * 删除数字提取参数列表
37
+ */
38
+ deletedb(data: object) {
39
+ return this.httpRequest.post<TAntv.IAntvParaResponse[]>("/antv/tpara/deletedb", data, undefined);
40
+ }
41
+
42
+ /**
43
+ * 获取数字提取参数详情列表
44
+ */
45
+ detaildb(antvmain: number) {
46
+ const params = {
47
+ antvmain
48
+ };
49
+ return this.httpRequest.post<TAntv.IAntvParaResponse[]>("/antv/tpara/detaildb", undefined, params);
50
+ }
51
+ }
52
+
53
+ export default ParaRequest;
package/src/axios.ts CHANGED
@@ -1,48 +1,48 @@
1
1
  import type { AxiosInstance, AxiosResponse } from "axios";
2
2
  import axios from "axios";
3
3
  import _ from "lodash";
4
- import { SecretUtil } from "@ningboyz/utils";
5
- import { Const, type IResponse, type TStore } from "@ningboyz/types";
4
+ import { type IResponse, type TStore } from "@ningboyz/types";
5
+ import { ISessionUserInfo, TSessionUserInfo } from "@ningboyz/types/src/store";
6
+
7
+ export interface IAxiosConfig {
8
+ baseURL: string;
9
+ timeout?: number;
10
+ getUserInfo?: () => ISessionUserInfo;
11
+ }
12
+
13
+ const initUserInfo = {
14
+ whobuild: 0,
15
+ userindx: 0,
16
+ usrtoken: "",
17
+ dbconfig: "",
18
+ };
6
19
 
7
20
  class HttpRequest {
8
21
  private instance: AxiosInstance;
9
22
  private readonly METHOD_GET: string = "GET";
10
23
  private readonly METHOD_POST: string = "POST";
11
24
 
12
- constructor(baseURL: string) {
25
+ constructor(config: IAxiosConfig) {
26
+ const { baseURL, timeout = 60000, getUserInfo } = config;
13
27
  this.instance = axios.create({
14
28
  baseURL,
15
- timeout: 60000
29
+ timeout,
16
30
  });
17
31
 
18
32
  this.instance.interceptors.request.use((request) => {
19
- let whobuild = 0;
20
- let userindx = 0;
21
- let usrtoken = "";
22
- let dbconfig = "";
23
-
24
- try {
25
- const enStr = sessionStorage.getItem(Const.User.USER_SESSION_INFO);
26
- if (!_.isNil(enStr)) {
27
- const str = SecretUtil.Decrypt(enStr);
28
- const userInfo = JSON.parse(str) as TStore.ISessionUserInfo;
29
- whobuild = userInfo.whobuild;
30
- userindx = userInfo.userIndx;
31
- usrtoken = userInfo.usrtoken;
32
- dbconfig = userInfo.dbConfig;
33
- }
34
- } catch (e: any) {
35
- console.error(e.message);
36
- }
37
-
33
+ const userInfo = !_.isNil(getUserInfo)
34
+ ? getUserInfo()
35
+ : new TSessionUserInfo();
36
+ /** 添加随机数,防止浏览器接口缓存 */
37
+ const time = new Date().getTime() + Math.round(Math.random() * 1000);
38
38
  request.params = {
39
- whobuild,
40
- userindx,
41
- ...request.params
39
+ whobuild: userInfo.whobuild !== 0 ? userInfo.whobuild : undefined,
40
+ userindx: userInfo.userIndx !== 0 ? userInfo.userIndx : undefined,
41
+ ...request.params,
42
+ r: time,
42
43
  };
43
-
44
- request.headers.usrtoken = !_.isEmpty(request.headers.usrtoken) ? request.headers.usrtoken : usrtoken;
45
- request.headers.dbconfig = dbconfig;
44
+ request.headers.usrtoken = userInfo.usrtoken;
45
+ request.headers.dbconfig = userInfo.dbConfig;
46
46
  return request;
47
47
  });
48
48
  }
@@ -53,7 +53,7 @@ class HttpRequest {
53
53
  .request<T>({
54
54
  method: this.METHOD_GET,
55
55
  url,
56
- params
56
+ params,
57
57
  })
58
58
  .then((res: AxiosResponse) => {
59
59
  resolve(res.data as IResponse<T>);
@@ -64,7 +64,12 @@ class HttpRequest {
64
64
  });
65
65
  }
66
66
 
67
- post<T>(url: string, data?: object, params?: object, headers?: object): Promise<IResponse<T>> {
67
+ post<T>(
68
+ url: string,
69
+ data?: object,
70
+ params?: object,
71
+ headers?: object
72
+ ): Promise<IResponse<T>> {
68
73
  return new Promise((resolve, reject) => {
69
74
  this.instance
70
75
  .request<T>({
@@ -73,8 +78,8 @@ class HttpRequest {
73
78
  params,
74
79
  data,
75
80
  headers: {
76
- ...headers
77
- }
81
+ ...headers,
82
+ },
78
83
  })
79
84
  .then((res: AxiosResponse) => {
80
85
  resolve(res.data as IResponse<T>);
@@ -85,7 +90,11 @@ class HttpRequest {
85
90
  });
86
91
  }
87
92
 
88
- postFile<T>(url: string, data?: object, params?: object): Promise<IResponse<T>> {
93
+ postFile<T>(
94
+ url: string,
95
+ data?: object,
96
+ params?: object
97
+ ): Promise<IResponse<T>> {
89
98
  return new Promise((resolve, reject) => {
90
99
  this.instance
91
100
  .request({
@@ -94,8 +103,8 @@ class HttpRequest {
94
103
  params,
95
104
  data,
96
105
  headers: {
97
- "Content-Type": `multipart/form-data;boundary=${new Date().getTime()}`
98
- }
106
+ "Content-Type": `multipart/form-data;boundary=${new Date().getTime()}`,
107
+ },
99
108
  })
100
109
  .then((res: AxiosResponse) => {
101
110
  resolve(res.data as IResponse<T>);
@@ -111,8 +120,8 @@ class HttpRequest {
111
120
  }
112
121
  }
113
122
 
114
- function createRequest(baseURL: string) {
115
- return new HttpRequest(baseURL);
123
+ function createRequest(config: IAxiosConfig) {
124
+ return new HttpRequest(config);
116
125
  }
117
126
 
118
127
  export { createRequest };
@@ -0,0 +1,18 @@
1
+ import { TWtui } from "@ningboyz/types";
2
+ import type { HttpRequest } from "../axios";
3
+
4
+ class FormRequest {
5
+ private httpRequest: HttpRequest;
6
+ constructor(httpRequest: HttpRequest) {
7
+ this.httpRequest = httpRequest;
8
+ }
9
+
10
+ /**
11
+ * 获取表单命名名称
12
+ */
13
+ get4From() {
14
+ return this.httpRequest.post<TWtui.IWtuiFormResponse[]>("/gapi/wtui/tform/get4form");
15
+ }
16
+ }
17
+
18
+ export default FormRequest;
package/src/card/gblb.ts CHANGED
@@ -42,11 +42,14 @@ class GblbRequest {
42
42
 
43
43
  /**
44
44
  * 国标类别详情
45
+ * @param gblbmain
45
46
  * @param data
47
+ * @param sourcend
46
48
  */
47
- detaildb(gblbmain: number, data: object) {
49
+ detaildb(gblbmain: number, data: object, sourcend: number) {
48
50
  const params = {
49
- gblbmain
51
+ gblbmain,
52
+ sourcend
50
53
  };
51
54
  return this.httpRequest.post<TCard.IGblbResponse[]>("/gapi/card/tgblb/detaildb", data, params);
52
55
  }
@@ -57,7 +60,48 @@ class GblbRequest {
57
60
  uploaddb(data: object, params: object) {
58
61
  return this.httpRequest.post<TCard.IGblbResponse[]>(`/gapi/card/tgblb/uploaddb`, data, params);
59
62
  }
60
- // sourcend=2024
63
+
64
+ /**
65
+ * 判断国标类别关联资产卡片
66
+ * @param data
67
+ */
68
+ judgedb(data: object) {
69
+ return this.httpRequest.post<TCard.IGblbResponse[]>("/gapi/card/tgblb/judgedb", data, undefined);
70
+ }
71
+
72
+ /**
73
+ * 根据国标类别获取资产类别
74
+ */
75
+ get4zclb(gblbmain: number, sourcend: number) {
76
+ const params = {
77
+ gblbmain,
78
+ sourcend
79
+ };
80
+ return this.httpRequest.post<TCard.IZclbResponse[]>(`/gapi/card/tgblb/get4zclb`, undefined, params);
81
+ }
82
+
83
+ /**
84
+ * 检查国标类别对应资产类别
85
+ */
86
+ checkzclb(data: object, zclbtype: number, sourcend: number) {
87
+ const params = {
88
+ zclbtype,
89
+ sourcend
90
+ };
91
+ return this.httpRequest.post<TCard.IGblbResponse[]>(`/gapi/card/tgblb/checkzclb`, data, params);
92
+ }
93
+
94
+ /**
95
+ * 根据启用年度获取资产类别
96
+ * 结账时,调用该接口,将结账的那条年度传入sourcend
97
+ * 如果跨年度,则调用该接口
98
+ */
99
+ nextYear(sourcend: number) {
100
+ const params = {
101
+ sourcend
102
+ };
103
+ return this.httpRequest.post<TCard.IZclbResponse[]>(`/gapi/card/tgblb/nextyear`, undefined, params);
104
+ }
61
105
  }
62
106
 
63
107
  export default GblbRequest;
package/src/card/index.ts CHANGED
@@ -1,10 +1,15 @@
1
- import { createRequest } from "../axios";
1
+ import { createRequest, IAxiosConfig } from "../axios";
2
2
  import GblbRequest from "./gblb";
3
3
  import MainRequest from "./main";
4
4
  import ZcbdRequest from "./zcbd";
5
5
  import ZccfRequest from "./zccf";
6
6
  import ZcczRequest from "./zccz";
7
7
  import ZcdbRequest from "./zcdb";
8
+ import ZclbRequest from "./zclb";
9
+ import FormRequest from "./form";
10
+ import ZczjRequest from "./zczj";
11
+ import P4pzRequest from "./p4pz";
12
+ import ZczjPropRequest from "./zczjProp";
8
13
 
9
14
  class CardRequest {
10
15
  public gblb: GblbRequest;
@@ -13,15 +18,25 @@ class CardRequest {
13
18
  public zccf: ZccfRequest;
14
19
  public zccz: ZcczRequest;
15
20
  public zcdb: ZcdbRequest;
21
+ public zclb: ZclbRequest;
22
+ public form: FormRequest;
23
+ public p4pz: P4pzRequest;
24
+ public zczj: ZczjRequest;
25
+ public zczjProp: ZczjPropRequest;
16
26
 
17
- constructor(baseURL: string) {
18
- const request = createRequest(baseURL);
27
+ constructor(config: IAxiosConfig) {
28
+ const request = createRequest(config);
19
29
  this.gblb = new GblbRequest(request);
20
30
  this.main = new MainRequest(request);
21
31
  this.zcbd = new ZcbdRequest(request);
22
32
  this.zccf = new ZccfRequest(request);
23
33
  this.zccz = new ZcczRequest(request);
24
34
  this.zcdb = new ZcdbRequest(request);
35
+ this.zclb = new ZclbRequest(request);
36
+ this.form = new FormRequest(request);
37
+ this.p4pz = new P4pzRequest(request);
38
+ this.zczj = new ZczjRequest(request);
39
+ this.zczjProp = new ZczjPropRequest(request);
25
40
  }
26
41
  }
27
42