@ningboyz/apis 1.7.128 → 1.7.130
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.7.
|
|
3
|
+
"version": "1.7.130",
|
|
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.130",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
package/packages/core/user.ts
CHANGED
|
@@ -956,6 +956,11 @@ class UserRequest {
|
|
|
956
956
|
withPageSelectdb(querys: ICoreUserWithPageSelectdbQuerys, params: object) {
|
|
957
957
|
return this.httpRequest.post<TCore.IUserResponse[]>("/core/tuser/withpage/selectdb", querys, params);
|
|
958
958
|
}
|
|
959
|
+
|
|
960
|
+
//追加查询(分页)
|
|
961
|
+
withPageSelectdbAppend(querys: ICoreUserWithPageSelectdbQuerys, params: object) {
|
|
962
|
+
return this.httpRequest.post<TCore.IUserResponse[]>("/core/tuser/withpage/selectd2", querys, params);
|
|
963
|
+
}
|
|
959
964
|
}
|
|
960
965
|
|
|
961
966
|
export default UserRequest;
|
package/packages/gzzd/types.ts
CHANGED
|
@@ -162,10 +162,12 @@ export class TGzzdMainDeletedbWithScczQuerys implements IGzzdMainDeletedbWithScc
|
|
|
162
162
|
}
|
|
163
163
|
|
|
164
164
|
export interface IGzzdMainUpdatedbWithScczQuerys {
|
|
165
|
+
kjndkjqj: number;
|
|
165
166
|
allyears: number;
|
|
166
167
|
}
|
|
167
168
|
|
|
168
169
|
export class TGzzdMainUpdatedbWithScczQuerys implements IGzzdMainUpdatedbWithScczQuerys {
|
|
170
|
+
kjndkjqj: number = -1;
|
|
169
171
|
allyears: number = -1;
|
|
170
172
|
}
|
|
171
173
|
|
package/packages/pzpt/cnfg.ts
CHANGED
|
@@ -108,7 +108,7 @@ class CnfgRequest {
|
|
|
108
108
|
* @returns
|
|
109
109
|
*/
|
|
110
110
|
cnfgPathReadfrom(querys: IPzptTcnfgCnfgpathReadFrom) {
|
|
111
|
-
return this.httpRequest.post<TResp.IErrorResponse>("/gapi/pzpt/tcnfg/cnfgpath/readfrom", querys);
|
|
111
|
+
return this.httpRequest.post<TResp.IErrorResponse[]>("/gapi/pzpt/tcnfg/cnfgpath/readfrom", querys);
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
|
package/packages/tabl/types.ts
CHANGED
|
@@ -12,6 +12,7 @@ export interface ITablMainSelectdbQuerys {
|
|
|
12
12
|
deptmain: number;
|
|
13
13
|
useronly: number;
|
|
14
14
|
unitmain: number;
|
|
15
|
+
usermain: number;
|
|
15
16
|
}
|
|
16
17
|
|
|
17
18
|
export class TTablMainSelectdbQuerys implements ITablMainSelectdbQuerys {
|
|
@@ -27,6 +28,7 @@ export class TTablMainSelectdbQuerys implements ITablMainSelectdbQuerys {
|
|
|
27
28
|
deptmain: number = -1;
|
|
28
29
|
useronly: number = -1;
|
|
29
30
|
unitmain: number = -1;
|
|
31
|
+
usermain: number = -1;
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
export interface ITablMainInsertdbQuerys {
|