@ningboyz/apis 1.0.147 → 1.0.148
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/gzjg/gzlm.ts +2 -2
- package/packages/myoa/main.ts +1 -0
- package/packages/zbys/type.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/apis",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.148",
|
|
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.0.
|
|
20
|
+
"@ningboyz/types": "1.0.148",
|
|
21
21
|
"axios": "1.8.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {}
|
package/packages/gzjg/gzlm.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TGzjg } from "@ningboyz/types";
|
|
1
|
+
import { TGzjg, TElem } from "@ningboyz/types";
|
|
2
2
|
import type { HttpRequest } from "../axios";
|
|
3
3
|
import { IGzjgGzlmDetaildbQuerys, IGzjgGzlmGet4GzlmQuerys, IGzjgGzlmInsertdbQuerys, IGzjgGzlmSelectdbQuerys, IGzjgGzlmUpdatedbQuerys, IGzjgGzlmSelectQuerys, IGzjgGzlmUploadQuerys, IGzjgGzlmSelectLmQuerys } from "./type";
|
|
4
4
|
|
|
@@ -75,7 +75,7 @@ class GzlmRequest {
|
|
|
75
75
|
* 获取工资栏目(指标要素)
|
|
76
76
|
*/
|
|
77
77
|
selectlm(querys: IGzjgGzlmSelectLmQuerys) {
|
|
78
|
-
return this.httpRequest.post<
|
|
78
|
+
return this.httpRequest.post<TElem.IElemDataResponse[]>(`/gzjg/tgzlm/withelem/selectlm`, querys, undefined);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
|
package/packages/myoa/main.ts
CHANGED
package/packages/zbys/type.ts
CHANGED
|
@@ -3,10 +3,12 @@ export interface IElemDetailSelectdbQuerys {
|
|
|
3
3
|
sourcend: number;
|
|
4
4
|
fromelem: number;
|
|
5
5
|
}
|
|
6
|
+
|
|
6
7
|
export class TElemDetailSelectdbQuerys implements IElemDetailSelectdbQuerys {
|
|
7
8
|
fromelem: number = -1;
|
|
8
9
|
sourcend: number = -1;
|
|
9
10
|
}
|
|
11
|
+
|
|
10
12
|
export interface IElemDetailInsertdbQuerys {
|
|
11
13
|
sourcend: number;
|
|
12
14
|
/**取左侧类中:TElemElemResponse.elemIndx*/
|
|
@@ -14,11 +16,13 @@ export interface IElemDetailInsertdbQuerys {
|
|
|
14
16
|
/**取左侧类中:TElemElemResponse.elemFrom*/
|
|
15
17
|
elemfrom: string;
|
|
16
18
|
}
|
|
19
|
+
|
|
17
20
|
export class TElemDetailInsertdbQuerys implements IElemDetailInsertdbQuerys {
|
|
18
21
|
fromelem: number = -1;
|
|
19
22
|
sourcend: number = -1;
|
|
20
23
|
elemfrom: string = "";
|
|
21
24
|
}
|
|
25
|
+
|
|
22
26
|
export interface IElemDetailQueuesbyQuerys {
|
|
23
27
|
sourcend: number;
|
|
24
28
|
/**取左侧类中:TElemElemResponse.elemIndx*/
|
|
@@ -26,6 +30,7 @@ export interface IElemDetailQueuesbyQuerys {
|
|
|
26
30
|
/**取左侧类中:TElemElemResponse.elemFrom*/
|
|
27
31
|
elemfrom: string;
|
|
28
32
|
}
|
|
33
|
+
|
|
29
34
|
export class TElemDetailQueuesbyQuerys implements IElemDetailQueuesbyQuerys {
|
|
30
35
|
fromelem: number = -1;
|
|
31
36
|
elemfrom: string = "";
|