@ningboyz/types 1.7.167 → 1.7.169

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.7.167",
4
+ "version": "1.7.169",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -76,6 +76,7 @@ export interface IWlzfMainResponse {
76
76
  lastMemo: string;
77
77
  userName: string;
78
78
  userGUID: string;
79
+ statText: string;
79
80
  envrName: string;
80
81
  listBill: IWlzfBillResponse[];
81
82
  listGZZD: IGzzdMainResponse[];
@@ -157,6 +158,8 @@ export class TWlzfMainResponse implements IWlzfMainResponse {
157
158
  userName: string = "";
158
159
  userGUID: string = "";
159
160
  envrName: string = "";
161
+ statText: string = "";
162
+
160
163
  listBill: IWlzfBillResponse[] = [];
161
164
  listGZZD: IGzzdMainResponse[] = [];
162
165
  constructor(data: Partial<IWlzfMainResponse> = {}) {