@ningboyz/apis 1.3.46 → 1.3.48

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.3.46",
3
+ "version": "1.3.48",
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.3.46",
20
+ "@ningboyz/types": "1.3.48",
21
21
  "axios": "1.8.4",
22
22
  "lodash": "^4.17.21"
23
23
  },
@@ -5,6 +5,7 @@ import {
5
5
  IHznkFydwDeletedbQuerys,
6
6
  IHznkFydwDetailQuerys,
7
7
  IHznkFydwFinishedQuerys,
8
+ IHznkFydwGet4itemQuerys,
8
9
  IHznkFydwInsertdbQuerys,
9
10
  IHznkFydwSelect2Querys,
10
11
  IHznkFydwSelectdbQuerys,
@@ -54,7 +55,12 @@ class FydwRequest {
54
55
  calcwbdw(querys: IHznkFydwcalcwbdwQuerys, params: object) {
55
56
  return this.httpRequest.post<THznk.IHznkFydwWbdwResponse[]>("/gapi/hznk/tfydw/calcwbdw", querys, params);
56
57
  }
57
-
58
+
59
+ // 查看赋分信息区历史
60
+ // {{baseURL}}/gapi/hznk/tfydw/get4item?1=1&sourcend=2025&hznkindx=725314398081221
61
+ get4item(querys: IHznkFydwGet4itemQuerys) {
62
+ return this.httpRequest.post<THznk.IHznkFydwResponse[]>("/gapi/hznk/tfydw/get4item", querys, undefined);
63
+ }
58
64
 
59
65
  }
60
66
 
@@ -539,4 +539,14 @@ export class THznkFydwcalcwbdwQuerys implements IHznkFydwcalcwbdwQuerys {
539
539
  whobuild: number = -1;
540
540
  userindx: number = -1;
541
541
  fydwindx: number = -1;
542
- }
542
+ }
543
+
544
+ export interface IHznkFydwGet4itemQuerys {
545
+ sourcend: number;
546
+ hznkindx: number;
547
+ }
548
+
549
+ export class THznkFydwGet4itemQuerys implements IHznkFydwGet4itemQuerys {
550
+ sourcend: number = -1;
551
+ hznkindx: number = -1;
552
+ }