@ningboyz/apis 1.0.14 → 1.0.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 +1 -1
- package/src/gzjg/gzlm.ts +4 -3
package/package.json
CHANGED
package/src/gzjg/gzlm.ts
CHANGED
|
@@ -10,7 +10,7 @@ class GzlmRequest {
|
|
|
10
10
|
/**
|
|
11
11
|
* 获取报表栏目
|
|
12
12
|
*/
|
|
13
|
-
|
|
13
|
+
selectdb(gzjgmain: number, tablname: string, gzlmflgq: number) {
|
|
14
14
|
const params = {
|
|
15
15
|
gzjgmain,
|
|
16
16
|
tablname,
|
|
@@ -19,9 +19,10 @@ class GzlmRequest {
|
|
|
19
19
|
return this.httpRequest.post<TGzjg.IGzjgGzlmResponse[]>("/gzjg/tgzlm/selectdb", undefined, params);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
insertdb(data: object, tablname
|
|
22
|
+
insertdb(data: object, tablname: string, gzlmMain: number) {
|
|
23
23
|
const params = {
|
|
24
|
-
tablname
|
|
24
|
+
tablname,
|
|
25
|
+
gzlmMain
|
|
25
26
|
};
|
|
26
27
|
return this.httpRequest.post<TGzjg.IGzjgGzlmResponse[]>("/gzjg/tgzlm/insertdb", data, params);
|
|
27
28
|
}
|