@ningboyz/types 1.4.181 → 1.4.183

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.4.181",
4
+ "version": "1.4.183",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -1,6 +1,7 @@
1
1
  import { Const } from "..";
2
2
  import { IPathResponse } from "../core";
3
3
  import { TFlowDataResponse } from "../flow";
4
+ import { IYzhtMainResponse } from "../yzht";
4
5
  import { IHzcbMainResponse } from "./IHzcbMainResponse";
5
6
  import { IHzcbXmtzBillResponse } from "./IHzcbXmtzBillResponse";
6
7
 
@@ -85,6 +86,7 @@ export interface IHzcbXmtzResponse {
85
86
 
86
87
  listFrom: IHzcbMainResponse[];
87
88
  listBill: IHzcbXmtzBillResponse[];
89
+ listYZHT: IYzhtMainResponse[];
88
90
  listPath: IPathResponse[];
89
91
  }
90
92
 
@@ -169,6 +171,7 @@ export class THzcbXmtzResponse implements IHzcbXmtzResponse {
169
171
 
170
172
  listFrom: IHzcbMainResponse[] = [];
171
173
  listBill: IHzcbXmtzBillResponse[] = [];
174
+ listYZHT: IYzhtMainResponse[] = [];
172
175
  listPath: IPathResponse[] = [];
173
176
 
174
177
  static toFlowDatas(xmtzs: THzcbXmtzResponse[]): TFlowDataResponse[] {