@ningboyz/apis 1.4.186 → 1.4.188

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.4.186",
3
+ "version": "1.4.188",
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.4.186",
20
+ "@ningboyz/types": "1.4.188",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -45,6 +45,7 @@ export interface IHzcbXmtzSelectdbQuerys {
45
45
  useronly: number;
46
46
  viewonly: number;
47
47
  unitmain: number;
48
+ hzcbmain: number;
48
49
  }
49
50
  export class THzcbXmtzSelectdbQuerys implements IHzcbXmtzSelectdbQuerys {
50
51
  withflow: number = 0; // 0不是审核流 1是审核流
@@ -52,6 +53,7 @@ export class THzcbXmtzSelectdbQuerys implements IHzcbXmtzSelectdbQuerys {
52
53
  useronly: number = -1;
53
54
  viewonly: number = -1;
54
55
  unitmain: number = -1;
56
+ hzcbmain: number = -1;
55
57
  }
56
58
  export interface IHzcbXmtzDetaildbQuerys {
57
59
  xmtzmain: number;
@@ -30,20 +30,20 @@ class MainRequest {
30
30
 
31
31
  // 获取出入库单详情
32
32
  detaildb(querys: ITakeMainDetaildbQuerys, params: object) {
33
- return this.httpRequest.post<TTake.ITakeMainResponse>("/gapi/take/tmain/detaildb", querys, params);
33
+ return this.httpRequest.post<TTake.ITakeMainResponse[]>("/gapi/take/tmain/detaildb", querys, params);
34
34
  }
35
35
 
36
36
 
37
37
  insertdb(querys: ITakeMainInsertdbQuerys, params: object) {
38
- return this.httpRequest.post<TTake.ITakeMainResponse>("/gapi/take/tmain/insertdb", querys, params);
38
+ return this.httpRequest.post<TTake.ITakeMainResponse[]>("/gapi/take/tmain/insertdb", querys, params);
39
39
  }
40
40
 
41
41
  updatedb(querys: ITakeMainUpdatedbQuerys, params: object) {
42
- return this.httpRequest.post<TTake.ITakeMainResponse>("/gapi/take/tmain/updatedb", querys, params);
42
+ return this.httpRequest.post<TTake.ITakeMainResponse[]>("/gapi/take/tmain/updatedb", querys, params);
43
43
  }
44
44
 
45
45
  deletedb(querys: ITakeMainDeletedbQuerys, params: object) {
46
- return this.httpRequest.post<TTake.ITakeMainResponse>("/gapi/take/tmain/deletedb", querys, params);
46
+ return this.httpRequest.post<TTake.ITakeMainResponse[]>("/gapi/take/tmain/deletedb", querys, params);
47
47
  }
48
48
 
49
49