@ningboyz/apis 1.4.100 → 1.4.102

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/apis",
3
- "version": "1.4.100",
3
+ "version": "1.4.102",
4
4
  "private": false,
5
5
  "description": "宁波甬政请求库",
6
6
  "author": "nbyt-syq",
@@ -17,7 +17,7 @@
17
17
  "registry": "https://registry.npmjs.org/"
18
18
  },
19
19
  "dependencies": {
20
- "@ningboyz/types": "1.4.100",
20
+ "@ningboyz/types": "1.4.102",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -1,9 +1,12 @@
1
1
  import { TZbzd } from "@ningboyz/types";
2
2
  import type { HttpRequest } from "../axios";
3
+ import { IEmptyQuerys } from "../type";
3
4
  import {
4
5
  IZbzdMainCansplitUploaddbQuerys,
5
6
  IZbzdMainDetaildbQuerys,
7
+ IZbzdMainFinishe2Querys,
6
8
  IZbzdMainFinishedQuerys,
9
+ IZbzdMainInsertd2Querys,
7
10
  IZbzdMainInsertdbQuerys,
8
11
  IZbzdMainOriginidUploaddbQuerys,
9
12
  IZbzdMainQueuesbyQuerys,
@@ -146,6 +149,36 @@ class ParaRequest {
146
149
  selectd4(querys: IZbzdMainSelectd4Querys, params: object) {
147
150
  return this.httpRequest.post<TZbzd.IZbzdMainResponse[]>("/zbzd/tmain/selectd4", querys, params);
148
151
  }
152
+
153
+ /**
154
+ * 获取已办预算指标列表
155
+ * @param querys
156
+ * @param params
157
+ * @returns
158
+ */
159
+ finishe2(querys: IZbzdMainFinishe2Querys) {
160
+ return this.httpRequest.post<TZbzd.IZbzdMainResponse[]>("/zbzd/tmain/finishe2", querys);
161
+ }
162
+
163
+ /**
164
+ * 新增预算指标
165
+ * @param querys
166
+ * @param params
167
+ * @returns
168
+ */
169
+ insertd2(querys: IZbzdMainInsertd2Querys, params: object) {
170
+ return this.httpRequest.post<TZbzd.IZbzdMainResponse[]>("/zbzd/tmain/insertd2", querys, params);
171
+ }
172
+
173
+ /**
174
+ * 修改预算指标
175
+ * @param querys
176
+ * @param params
177
+ * @returns
178
+ */
179
+ updated2(querys: IEmptyQuerys, params: object) {
180
+ return this.httpRequest.post<TZbzd.IZbzdMainResponse[]>("/zbzd/tmain/updated2", querys, params);
181
+ }
149
182
  }
150
183
 
151
184
  export default ParaRequest;
@@ -109,6 +109,21 @@ export class TZbzdMainSelectd4Querys implements IZbzdMainSelectd4Querys {
109
109
  useronly: number = -1;
110
110
  }
111
111
 
112
+ export interface IZbzdMainFinishe2Querys {
113
+ sourcend: number;
114
+ }
115
+
116
+ export class TZbzdMainFinishe2Querys implements IZbzdMainFinishe2Querys {
117
+ sourcend: number = -1;
118
+ }
119
+
120
+ export interface IZbzdMainInsertd2Querys {
121
+ sourcend: number;
122
+ }
123
+
124
+ export class TZbzdMainInsertd2Querys implements IZbzdMainInsertd2Querys {
125
+ sourcend: number = -1;
126
+ }
112
127
 
113
128
  /** ========== zbfl ========== */
114
129
  export interface IZbzdZbflZbflbmkmQuerys {