@ningboyz/apis 1.2.174 → 1.2.176

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.2.174",
3
+ "version": "1.2.176",
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.2.174",
20
+ "@ningboyz/types": "1.2.176",
21
21
  "axios": "1.8.4"
22
22
  },
23
23
  "devDependencies": {}
@@ -1,6 +1,6 @@
1
1
  import { THznk } from "@ningboyz/types";
2
2
  import { HttpRequest } from "../axios";
3
- import { IHznkFydwDeletedbQuerys, IHznkFydwDetailQuerys, IHznkFydwFinishedQuerys, IHznkFydwInsertdbQuerys, IHznkFydwSelectdbQuerys, IHznkFydwSelectglQuerys, IHznkFydwUpdatedbQuerys } from "./type";
3
+ import { IHznkFydwDeletedbQuerys, IHznkFydwDetailQuerys, IHznkFydwFinishedQuerys, IHznkFydwInsertdbQuerys, IHznkFydwSelect2Querys, IHznkFydwSelectdbQuerys, IHznkFydwSelectglQuerys, IHznkFydwUpdatedbQuerys } from "./type";
4
4
 
5
5
  class FydwRequest {
6
6
  private httpRequest: HttpRequest;
@@ -34,6 +34,11 @@ class FydwRequest {
34
34
  selectgl(querys: IHznkFydwSelectglQuerys) {
35
35
  return this.httpRequest.post<THznk.IHznkFydwResponse[]>("/gapi/hznk/tfydw/selectgl", querys, undefined);
36
36
  }
37
+
38
+ // 根据项目获取到位经费明细
39
+ selectd2(querys: IHznkFydwSelect2Querys) {
40
+ return this.httpRequest.post<THznk.IHznkFydwBillResponse[]>("/gapi/hznk/tfydw/selectd2", querys, undefined);
41
+ }
37
42
  }
38
43
 
39
44
  export default FydwRequest;
@@ -230,6 +230,17 @@ export interface IHznkFydwDetailQuerys {
230
230
  fydwindx: number;
231
231
  }
232
232
 
233
+ export interface IHznkFydwSelect2Querys {
234
+ sourcend: number;
235
+ hznkmain: number;
236
+ }
237
+
238
+ export class THznkFydwSelect2Querys implements IHznkFydwSelect2Querys {
239
+ sourcend: number = -1;
240
+ hznkmain: number = -1;
241
+ }
242
+
243
+
233
244
  export class THznkFydwDetailQuerys implements IHznkFydwDetailQuerys {
234
245
  sourcend: number = -1;
235
246
  fydwindx: number = -1;