@ningboyz/apis 1.7.81 → 1.7.83
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/japz/item.ts +6 -1
- package/packages/japz/types.ts +11 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.83",
|
|
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.7.
|
|
20
|
+
"@ningboyz/types": "1.7.83",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/japz/item.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { TJapz } from "@ningboyz/types";
|
|
|
3
3
|
import {
|
|
4
4
|
IJapzItemCheckk9Querys,
|
|
5
5
|
IJapzItemCheckrgQuerys,
|
|
6
|
-
IJapzItemDeletedbQuerys,
|
|
6
|
+
IJapzItemDeletedbQuerys, IJapzItemDetaild2Querys,
|
|
7
7
|
IJapzItemDetailQuerys,
|
|
8
8
|
IJapzItemInsertdbQuerys,
|
|
9
9
|
IJapzItemSelectdbQuerys,
|
|
@@ -58,6 +58,11 @@ class ItemRequest {
|
|
|
58
58
|
uploadk9km(querys: IJapzItemUploadk9kmQuerys, params: object) {
|
|
59
59
|
return this.httpRequest.post<TJapz.IJapzK9kmResponse[]>("/gapi/japz/titem/uploadk9km", querys, params);
|
|
60
60
|
}
|
|
61
|
+
|
|
62
|
+
// 获取依据范围
|
|
63
|
+
detaild2(querys: IJapzItemDetaild2Querys, params: object) {
|
|
64
|
+
return this.httpRequest.post<TJapz.IJapzK9kmResponse[]>("/gapi/japz/titem/detaild2", querys, params);
|
|
65
|
+
}
|
|
61
66
|
}
|
|
62
67
|
|
|
63
68
|
export default ItemRequest;
|
package/packages/japz/types.ts
CHANGED
|
@@ -165,6 +165,17 @@ export class TJapzItemUploadk9kmQuerys implements IJapzItemUploadk9kmQuerys {
|
|
|
165
165
|
itemindx: number = -1;
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
+
|
|
169
|
+
export interface IJapzItemDetaild2Querys {
|
|
170
|
+
sourcend: number;
|
|
171
|
+
sourceid: number;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export class TJapzItemDetaild2Querys implements IJapzItemDetaild2Querys {
|
|
175
|
+
sourcend: number = -1;
|
|
176
|
+
sourceid: number = -1;
|
|
177
|
+
}
|
|
178
|
+
|
|
168
179
|
//#K0km
|
|
169
180
|
export interface IJapzK0kmSelectdbQuerys {
|
|
170
181
|
sourcend: number;
|