@ningboyz/apis 1.5.14 → 1.5.16
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/core/dept.ts +2 -2
- package/packages/yzht/types.ts +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.16",
|
|
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.16",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/core/dept.ts
CHANGED
|
@@ -145,7 +145,7 @@ class DeptRequest {
|
|
|
145
145
|
* @returns
|
|
146
146
|
*/
|
|
147
147
|
deptPathUploaddb(querys: ICoreDeptDeptPathUploaddbQuerys, params: object) {
|
|
148
|
-
return this.httpRequest.post<
|
|
148
|
+
return this.httpRequest.post<string>("/core/tdept/deptpath/uploaddb", querys, params);
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
/**
|
|
@@ -155,7 +155,7 @@ class DeptRequest {
|
|
|
155
155
|
* @returns
|
|
156
156
|
*/
|
|
157
157
|
deptPathResetdp(querys: ICoreDeptDeptPathResetdpQuerys, params: object) {
|
|
158
|
-
return this.httpRequest.post<
|
|
158
|
+
return this.httpRequest.post<string>("/core/tdept/deptpath/deletedb", querys, params);
|
|
159
159
|
}
|
|
160
160
|
}
|
|
161
161
|
|
package/packages/yzht/types.ts
CHANGED
|
@@ -29,10 +29,12 @@ export class TYzhtMainSelectdbQuerys implements IYzhtMainSelectdbQuerys {
|
|
|
29
29
|
|
|
30
30
|
export interface IYzhtMainInsertdbQuerys {
|
|
31
31
|
yzhthtbh: number;
|
|
32
|
+
sourcend: number;
|
|
32
33
|
}
|
|
33
34
|
|
|
34
35
|
export class TYzhtMainInsertdbQuerys implements IYzhtMainInsertdbQuerys {
|
|
35
36
|
yzhthtbh: number = -1;
|
|
37
|
+
sourcend: number = -1;
|
|
36
38
|
}
|
|
37
39
|
|
|
38
40
|
export interface IYzhtMainDeletedbQuerys {
|
|
@@ -91,9 +93,9 @@ export class TYzhtGlfdSelectfdQuerys implements IYzhtGlfdSelectfdQuerys {
|
|
|
91
93
|
unitmain: number = -1;
|
|
92
94
|
}
|
|
93
95
|
|
|
94
|
-
export interface IYzhtBillUpdated8Querys {
|
|
96
|
+
export interface IYzhtBillUpdated8Querys {}
|
|
95
97
|
|
|
96
|
-
export class TYzhtBillUpdated8Querys implements IYzhtBillUpdated8Querys {
|
|
98
|
+
export class TYzhtBillUpdated8Querys implements IYzhtBillUpdated8Querys {}
|
|
97
99
|
|
|
98
100
|
export interface IYzhtMainSelectd9Querys {
|
|
99
101
|
hzcbmain: number;
|