@ningboyz/apis 1.0.89 → 1.0.90
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
package/packages/card/p4pz.ts
CHANGED
|
@@ -22,7 +22,7 @@ class P4pzRequest {
|
|
|
22
22
|
* @param params
|
|
23
23
|
*/
|
|
24
24
|
deletedb(params: object) {
|
|
25
|
-
return this.httpRequest.post<TCard.IP4pzResponse[]>("/gapi/card/tp4pz/deletedb", params);
|
|
25
|
+
return this.httpRequest.post<TCard.IP4pzResponse[]>("/gapi/card/tp4pz/deletedb", undefined, params);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
/**
|
|
@@ -16,6 +16,30 @@ class SysbilltypeRequest {
|
|
|
16
16
|
selectdb(querys: ICoreSysbilltypeSelectdbQuerys) {
|
|
17
17
|
return this.httpRequest.post<TCore.ISysMenuWithExpdResponse[]>("/core/tsysbilltype/selectdb", querys, undefined);
|
|
18
18
|
}
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* 删除业务类型
|
|
22
|
+
* @param params
|
|
23
|
+
*/
|
|
24
|
+
deletedb(params: object) {
|
|
25
|
+
return this.httpRequest.post<TCore.ISysMenuWithExpdResponse[]>("/core/tsysbilltype/deletedb", undefined, params);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* 新增业务类型
|
|
30
|
+
* @param params
|
|
31
|
+
*/
|
|
32
|
+
insertdb(params: object) {
|
|
33
|
+
return this.httpRequest.post<TCore.ISysMenuWithExpdResponse[]>("/core/tsysbilltype/insertdb", undefined, params);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* 更新业务类型
|
|
38
|
+
* @param params
|
|
39
|
+
*/
|
|
40
|
+
updatedb(params: object) {
|
|
41
|
+
return this.httpRequest.post<TCore.ISysMenuWithExpdResponse[]>("/core/tsysbilltype/updatedb", undefined, params);
|
|
42
|
+
}
|
|
19
43
|
}
|
|
20
44
|
|
|
21
45
|
export default SysbilltypeRequest;
|