@ningboyz/types 1.2.133 → 1.2.134

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.2.133",
4
+ "version": "1.2.134",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -4,6 +4,7 @@ import { IHznkDataItemResponse } from "./IHznkDataItemResponse";
4
4
  import _ from "lodash";
5
5
  import { TFlowDataResponse } from "../flow/IFlowDataResponse";
6
6
  import { IUserLiteResponse } from "../core";
7
+ import { IHznkMainResponse } from "./IHznkMainResponse";
7
8
 
8
9
  export interface IHznkDataResponse {
9
10
  whoBuild: number;
@@ -147,6 +148,8 @@ export interface IHznkDataResponse {
147
148
  listItem: IHznkDataItemResponse[];
148
149
  listNBYH: IUserLiteResponse[];
149
150
  listLock: IHznkDataResponse[];
151
+ /** 关联项目 */
152
+ listFrom: IHznkMainResponse[]
150
153
  }
151
154
 
152
155
  export class THznkDataResponse implements IHznkDataResponse {
@@ -251,6 +254,8 @@ export class THznkDataResponse implements IHznkDataResponse {
251
254
  listItem: IHznkDataItemResponse[] = [];
252
255
  listNBYH: IUserLiteResponse[] = [];
253
256
  listLock: IHznkDataResponse[] = [];
257
+ /** 关联项目 */
258
+ listFrom: IHznkMainResponse[] = []
254
259
 
255
260
  constructor(response?: any) {
256
261
  if (response) {