@ningboyz/apis 1.4.118 → 1.4.120

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.118",
3
+ "version": "1.4.120",
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.118",
20
+ "@ningboyz/types": "1.4.120",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -199,7 +199,7 @@ class ParaRequest {
199
199
  * @returns
200
200
  */
201
201
  schedule(querys: IMyoaMainScheduleQuerys, params: object) {
202
- return this.httpRequest.post<TCard.ICardMainResponse[]>("/gapi/myoa/tmain/schedule", querys, params);
202
+ return this.httpRequest.post<TMyoa.IMyoaMainResponse[]>("/gapi/myoa/tmain/schedule", querys, params);
203
203
  }
204
204
  /**
205
205
  * 设置分配车辆
@@ -6,6 +6,7 @@ export interface INotiMainSelectdbQuerys {
6
6
  unitonly: number;
7
7
  unitmain: number;
8
8
  withflow: number;
9
+ useronly: number;
9
10
  queuesby: string;
10
11
  }
11
12
 
@@ -16,6 +17,7 @@ export class TNotiMainSelectdbQuerys implements INotiMainSelectdbQuerys {
16
17
  unitonly: number = -1;
17
18
  unitmain: number = -1;
18
19
  withflow: number = 0;
20
+ useronly: number = -1;
19
21
  queuesby: string = "";
20
22
  }
21
23
 
@@ -1,31 +1,37 @@
1
1
  export interface IOcriPathPdfMergeQuerys {
2
2
  url: string;
3
+ golangurl: string;
3
4
  }
4
5
 
5
6
  export class TOcriPathPdfMergeQuerys implements IOcriPathPdfMergeQuerys {
6
7
  url: string = "";
8
+ golangurl: string = "";
7
9
  }
8
10
 
9
11
  export interface IOcriPathWordDownloadQuerys {
10
12
  url: string;
13
+ golangurl: string;
11
14
  filetype: string;
12
15
  filename: string;
13
16
  }
14
17
 
15
18
  export class TOcriPathWordDownloadQuerys implements IOcriPathWordDownloadQuerys {
16
19
  url: string = "";
20
+ golangurl: string = "";
17
21
  filetype: string = "";
18
22
  filename: string = "";
19
23
  }
20
24
 
21
25
  export interface IOcriPathWordGernateQuerys {
22
26
  url: string;
27
+ golangurl: string;
23
28
  filetype: string;
24
29
  filename: string;
25
30
  }
26
31
 
27
32
  export class TOcriPathWordGernateQuerys implements IOcriPathWordGernateQuerys {
28
33
  url: string = "";
34
+ golangurl: string = "";
29
35
  filetype: string = "";
30
36
  filename: string = "";
31
37
  }