@ningboyz/types 1.2.129 → 1.2.130

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.129",
4
+ "version": "1.2.130",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -146,6 +146,7 @@ export interface IHznkDataResponse {
146
146
  listEach: IHznkDataEachResponse[];
147
147
  listItem: IHznkDataItemResponse[];
148
148
  listNBYH: IUserLiteResponse[];
149
+ listLock: IHznkDataResponse[];
149
150
  }
150
151
 
151
152
  export class THznkDataResponse implements IHznkDataResponse {
@@ -249,6 +250,7 @@ export class THznkDataResponse implements IHznkDataResponse {
249
250
  listEach: IHznkDataEachResponse[] = [];
250
251
  listItem: IHznkDataItemResponse[] = [];
251
252
  listNBYH: IUserLiteResponse[] = [];
253
+ listLock: IHznkDataResponse[] = [];
252
254
 
253
255
  constructor(response?: any) {
254
256
  if (response) {
@@ -97,10 +97,12 @@ export interface IViewCtrlResponseWithParaConv {
97
97
  routerName: string;
98
98
  auth: boolean;
99
99
  keepAlive: boolean;
100
+ componentName: string;
100
101
  }
101
102
 
102
103
  export class TViewCtrlResponseWithParaConv implements IViewCtrlResponseWithParaConv {
103
104
  routerName: string = "";
104
105
  auth: boolean = true;
105
- keepAlive: boolean = true;
106
+ keepAlive: boolean = false;
107
+ componentName: string = "";
106
108
  }