@ningboyz/types 1.3.110 → 1.3.112

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.3.110",
4
+ "version": "1.3.112",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -1,3 +1,5 @@
1
+ import { IJapzK9kmResponse } from "./IJapzK9kmResponse";
2
+
1
3
  export interface IJapzItemResponse {
2
4
  whoBuild: number;
3
5
  userIndx: number;
@@ -33,6 +35,8 @@ export interface IJapzItemResponse {
33
35
  /** 项目名称 */
34
36
  itemName: string;
35
37
  itemMemo: string;
38
+
39
+ listK9km: IJapzK9kmResponse[];
36
40
  }
37
41
 
38
42
  export class TJapzItemResponse implements IJapzItemResponse {
@@ -66,4 +70,6 @@ export class TJapzItemResponse implements IJapzItemResponse {
66
70
  itemCode: string = "";
67
71
  itemName: string = "";
68
72
  itemMemo: string = "";
73
+
74
+ listK9km: IJapzK9kmResponse[] = [];
69
75
  }