@ningboyz/apis 1.5.173 → 1.5.174
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.5.
|
|
3
|
+
"version": "1.5.174",
|
|
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.174",
|
|
21
21
|
"axios": "1.8.4",
|
|
22
22
|
"lodash": "^4.17.21"
|
|
23
23
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TCore } from "@ningboyz/types";
|
|
2
2
|
import type { HttpRequest } from "../axios";
|
|
3
|
-
import { ICoreSystravelSelectdb2Querys, ICoreSystravelSelectdbQuerys } from "./types";
|
|
3
|
+
import { ICoreSystravelBillstatUpdatedbQuerys, ICoreSystravelSelectdb2Querys, ICoreSystravelSelectdbQuerys } from "./types";
|
|
4
4
|
|
|
5
5
|
class SysTravelRequest {
|
|
6
6
|
private httpRequest: HttpRequest;
|
|
@@ -43,6 +43,11 @@ class SysTravelRequest {
|
|
|
43
43
|
uploaddb(params: object) {
|
|
44
44
|
return this.httpRequest.post<TCore.ISysTravelResponse[]>("/core/tsystravel/uploaddb", undefined, params);
|
|
45
45
|
}
|
|
46
|
+
|
|
47
|
+
// 更新日志状态
|
|
48
|
+
billstatupdatedb(querys: ICoreSystravelBillstatUpdatedbQuerys, params: object) {
|
|
49
|
+
return this.httpRequest.post<TCore.ISysTravelResponse[]>("/core/tsystravel/billstat/updatedb", querys, params);
|
|
50
|
+
}
|
|
46
51
|
}
|
|
47
52
|
|
|
48
53
|
export default SysTravelRequest;
|
package/packages/core/types.ts
CHANGED
|
@@ -1008,7 +1008,6 @@ export class TCoreUserUpdatedbStatQuerys implements ICoreUserUpdatedbStatQuerys
|
|
|
1008
1008
|
userstat: number = -1;
|
|
1009
1009
|
}
|
|
1010
1010
|
|
|
1011
|
-
|
|
1012
1011
|
export interface ICoreUserUpdateonQuerys {
|
|
1013
1012
|
usermain: number;
|
|
1014
1013
|
updateon: number;
|
|
@@ -1018,6 +1017,14 @@ export class TCoreUserUpdateonQuerys implements ICoreUserUpdateonQuerys {
|
|
|
1018
1017
|
updateon: number = -1;
|
|
1019
1018
|
}
|
|
1020
1019
|
|
|
1020
|
+
export interface ICoreSystravelBillstatUpdatedbQuerys {
|
|
1021
|
+
billmain: number;
|
|
1022
|
+
billstat: number;
|
|
1023
|
+
}
|
|
1024
|
+
export class TCoreSystravelBillstatUpdatedbQuerys implements ICoreSystravelBillstatUpdatedbQuerys {
|
|
1025
|
+
billmain: number = -1;
|
|
1026
|
+
billstat: number = -1;
|
|
1027
|
+
}
|
|
1021
1028
|
export interface ICoreUserGet4UnitQuerys {
|
|
1022
1029
|
usrpartc: number;
|
|
1023
1030
|
}
|