@ningboyz/apis 1.5.145 → 1.5.147
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 +2 -2
- package/packages/bill/types.ts +6 -2
- package/packages/yzht/main.ts +36 -3
- package/packages/yzht/types.ts +31 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.147",
|
|
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.5.
|
|
20
|
+
"@ningboyz/types": "1.5.147",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/bill/types.ts
CHANGED
|
@@ -106,8 +106,12 @@ export class TBillCnfgSelectdbQuerys implements IBillCnfgSelectdbQuerys {}
|
|
|
106
106
|
export interface IBillCnfgSelectd2Querys {}
|
|
107
107
|
export class TBillCnfgSelectd2Querys implements IBillCnfgSelectd2Querys {}
|
|
108
108
|
|
|
109
|
-
export interface IBillMainChkexistQuerys {
|
|
110
|
-
|
|
109
|
+
export interface IBillMainChkexistQuerys {
|
|
110
|
+
billzffs: number;
|
|
111
|
+
}
|
|
112
|
+
export class TBillMainChkexistQuerys implements IBillMainChkexistQuerys {
|
|
113
|
+
billzffs: number = -1;
|
|
114
|
+
}
|
|
111
115
|
|
|
112
116
|
export interface IBillMainChkexis2Querys {}
|
|
113
117
|
export class TBillMainChkexis2Querys implements IBillMainChkexis2Querys {}
|
package/packages/yzht/main.ts
CHANGED
|
@@ -4,12 +4,15 @@ import { IEmptyQuerys } from "../type";
|
|
|
4
4
|
import {
|
|
5
5
|
IYzhtBillGet4BillQuerys,
|
|
6
6
|
IYzhtMainCancele2Querys,
|
|
7
|
+
IYzhtMainCancele3Querys,
|
|
7
8
|
IYzhtMainCanceledQuerys,
|
|
8
9
|
IYzhtMainChkexis3Querys,
|
|
9
10
|
IYzhtMainChkexis4Querys,
|
|
11
|
+
IYzhtMainChkexis5Querys,
|
|
10
12
|
IYzhtMainDeletedbQuerys,
|
|
11
13
|
IYzhtMainDetaildbQuerys,
|
|
12
14
|
IYzhtMainExecute2Querys,
|
|
15
|
+
IYzhtMainExecute3Querys,
|
|
13
16
|
IYzhtMainExecutedQuerys,
|
|
14
17
|
IYzhtMainFinishedQuerys,
|
|
15
18
|
IYzhtMainInsertdbQuerys,
|
|
@@ -208,7 +211,7 @@ class YzhtRequest {
|
|
|
208
211
|
}
|
|
209
212
|
|
|
210
213
|
/**
|
|
211
|
-
*
|
|
214
|
+
* 续租合同订立终审-上城财政
|
|
212
215
|
* @param querys
|
|
213
216
|
* @param params
|
|
214
217
|
* @returns
|
|
@@ -218,7 +221,7 @@ class YzhtRequest {
|
|
|
218
221
|
}
|
|
219
222
|
|
|
220
223
|
/**
|
|
221
|
-
*
|
|
224
|
+
* 续租合同订立撤销终审判断-上城财政
|
|
222
225
|
* @param querys
|
|
223
226
|
* @param params
|
|
224
227
|
* @returns
|
|
@@ -228,7 +231,7 @@ class YzhtRequest {
|
|
|
228
231
|
}
|
|
229
232
|
|
|
230
233
|
/**
|
|
231
|
-
*
|
|
234
|
+
* 续租合同订立撤销终审-上城财政
|
|
232
235
|
* @param querys
|
|
233
236
|
* @param params
|
|
234
237
|
* @returns
|
|
@@ -237,6 +240,36 @@ class YzhtRequest {
|
|
|
237
240
|
return this.httpRequest.post<TCustom.IValidReponse[]>("/gapi/yzht/tmain/withsccz/cancele2", querys, params);
|
|
238
241
|
}
|
|
239
242
|
|
|
243
|
+
/**
|
|
244
|
+
* 合同退租终审-上城财政
|
|
245
|
+
* @param querys
|
|
246
|
+
* @param params
|
|
247
|
+
* @returns
|
|
248
|
+
*/
|
|
249
|
+
execute3(querys: IYzhtMainExecute3Querys, params: object) {
|
|
250
|
+
return this.httpRequest.post<TYzht.IYzhtMainResponse[]>("/gapi/yzht/tmain/withsccz/execute3", querys, params);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* 合同退租撤销终审判断-上城财政
|
|
255
|
+
* @param querys
|
|
256
|
+
* @param params
|
|
257
|
+
* @returns
|
|
258
|
+
*/
|
|
259
|
+
chkexis5(querys: IYzhtMainChkexis5Querys, params: object) {
|
|
260
|
+
return this.httpRequest.post<TCustom.IValidReponse[]>("/gapi/yzht/tmain/withsccz/chkexis5", querys, params);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* 合同退租撤销终审-上城财政
|
|
265
|
+
* @param querys
|
|
266
|
+
* @param params
|
|
267
|
+
* @returns
|
|
268
|
+
*/
|
|
269
|
+
cancele3(querys: IYzhtMainCancele3Querys, params: object) {
|
|
270
|
+
return this.httpRequest.post<TCustom.IValidReponse[]>("/gapi/yzht/tmain/withsccz/cancele3", querys, params);
|
|
271
|
+
}
|
|
272
|
+
|
|
240
273
|
/**
|
|
241
274
|
* 合同更新客户
|
|
242
275
|
* @param querys
|
package/packages/yzht/types.ts
CHANGED
|
@@ -175,19 +175,23 @@ export class TYzhtMainCanceledQuerys implements IYzhtMainCanceledQuerys {
|
|
|
175
175
|
|
|
176
176
|
export interface IYzhtMainExecute2Querys {
|
|
177
177
|
billuuid: string;
|
|
178
|
-
|
|
178
|
+
flowuuid: string;
|
|
179
|
+
billzffs: number;
|
|
180
|
+
billfkfs: number;
|
|
179
181
|
}
|
|
180
182
|
|
|
181
183
|
export class TYzhtMainExecute2Querys implements IYzhtMainExecute2Querys {
|
|
182
184
|
billuuid: string = "";
|
|
183
|
-
|
|
185
|
+
flowuuid: string = "";
|
|
186
|
+
billzffs: number = -1;
|
|
187
|
+
billfkfs: number = -1;
|
|
184
188
|
}
|
|
185
189
|
|
|
186
190
|
export interface IYzhtMainChkexis4Querys {
|
|
187
191
|
billuuid: string;
|
|
188
192
|
}
|
|
189
193
|
|
|
190
|
-
export class TYzhtMainChkexis4Querys implements
|
|
194
|
+
export class TYzhtMainChkexis4Querys implements IYzhtMainChkexis4Querys {
|
|
191
195
|
billuuid: string = "";
|
|
192
196
|
}
|
|
193
197
|
|
|
@@ -199,6 +203,30 @@ export class TYzhtMainCancele2Querys implements IYzhtMainCancele2Querys {
|
|
|
199
203
|
billuuid: string = "";
|
|
200
204
|
}
|
|
201
205
|
|
|
206
|
+
export interface IYzhtMainExecute3Querys {
|
|
207
|
+
billuuid: string;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
export class TYzhtMainExecute3Querys implements IYzhtMainExecute3Querys {
|
|
211
|
+
billuuid: string = "";
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
export interface IYzhtMainChkexis5Querys {
|
|
215
|
+
billuuid: string;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
export class TYzhtMainChkexis5Querys implements IYzhtMainChkexis5Querys {
|
|
219
|
+
billuuid: string = "";
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
export interface IYzhtMainCancele3Querys {
|
|
223
|
+
billuuid: string;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
export class TYzhtMainCancele3Querys implements IYzhtMainCancele3Querys {
|
|
227
|
+
billuuid: string = "";
|
|
228
|
+
}
|
|
229
|
+
|
|
202
230
|
export interface IYzhtMainHasEndedQuerys {
|
|
203
231
|
hasEnded: number;
|
|
204
232
|
}
|