@ningboyz/apis 1.1.20 → 1.1.21

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.1.20",
3
+ "version": "1.1.21",
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.1.20",
20
+ "@ningboyz/types": "1.1.21",
21
21
  "axios": "1.8.4"
22
22
  },
23
23
  "devDependencies": {}
@@ -16,7 +16,7 @@ class MainRequest {
16
16
  * 查询支出单据
17
17
  * */
18
18
  selectdb(querys: IExpdMainSelectdbQuerys, params: object) {
19
- return this.httpRequest.post<TWldy.IWldyPageResponse>("/expd/tmain/selectdb", querys, params);
19
+ return this.httpRequest.post<TWldy.IWldyPageResponse[]>("/expd/tmain/selectdb", querys, params);
20
20
  }
21
21
  }
22
22
 
@@ -9,8 +9,10 @@ export class TExpdMainDetaildbQuerys implements IExpdMainDetaildbQuerys {
9
9
  /** ========== main ========== */
10
10
  export interface IExpdMainSelectdbQuerys {
11
11
  todolock: number;
12
+ withflow: number;
12
13
  }
13
14
 
14
15
  export class TExpdMainSelectdbQuerys implements IExpdMainSelectdbQuerys {
15
16
  todolock: number = -1;
17
+ withflow: number = 1;
16
18
  }
@@ -0,0 +1,17 @@
1
+ /** ========== main ========== */
2
+ export interface IExpdMainDetaildbQuerys {
3
+ expdmain: number;
4
+ }
5
+
6
+ export class TExpdMainDetaildbQuerys implements IExpdMainDetaildbQuerys {
7
+ expdmain: number = -1;
8
+ }
9
+ /** ========== main ========== */
10
+ export interface IExpdMainSelectdbQuerys {
11
+ todolock: number;
12
+ }
13
+
14
+ export class TExpdMainSelectdbQuerys implements IExpdMainSelectdbQuerys {
15
+ todolock: number = -1;
16
+ withflow: number = 1;
17
+ }
@@ -75,8 +75,14 @@ export class TGamsItemInsertdbQuerys implements IGamsItemInsertdbQuerys {
75
75
 
76
76
  export interface IGamsCnfgGet4billQuerys {
77
77
  expdmain: number;
78
+ todolock: number;
79
+ canclose: number;
80
+ unitmain: number;
78
81
  }
79
82
 
80
83
  export class TGamsCnfgGet4billQuerys implements IGamsCnfgGet4billQuerys {
81
84
  expdmain: number = -1;
85
+ todolock: number = -1;
86
+ canclose: number = -1;
87
+ unitmain: number = -1;
82
88
  }