@ningboyz/types 1.5.119 → 1.5.121

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.5.119",
4
+ "version": "1.5.121",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -2,6 +2,7 @@ import { TCore } from "..";
2
2
  import { IWzpzItemResponse } from "./IWzpzItemResponse";
3
3
  import { IWzpzK0kmResponse } from "./IWzpzK0kmResponse";
4
4
  import { IWzpzTypeResponse } from "./IWzpzTypeResponse";
5
+ import _ from "lodash";
5
6
  export interface IWzpzK8kmResponse {
6
7
  whoBuild: number;
7
8
  userIndx: number;
@@ -67,7 +68,13 @@ export interface IWzpzK8kmResponse {
67
68
  itemText: string;
68
69
  inGenger: number;
69
70
  dictText: string;
70
-
71
+ // 性别
72
+ inGender:number;
73
+ // 单价 价格
74
+ k8kmKmdj:number;
75
+ // 供应商
76
+ k8kmSccs:string;
77
+ listDict: TCore.IDictResponse[];
71
78
  children: IWzpzK8kmResponse[];
72
79
  listDept: TCore.IDeptResponse[];
73
80
  listItem: IWzpzItemResponse[];
@@ -142,10 +149,28 @@ export class TWzpzK8kmResponse implements IWzpzK8kmResponse {
142
149
  k8kmQmje: number = 0;
143
150
  k0kmKmbm: string = "";
144
151
  laidMain: number = 0;
152
+ inGender:number = 0;
153
+ k8kmKmdj:number = 0;
154
+ k8kmSccs:string = "";
155
+ listDict: TCore.IDictResponse[] = [];
156
+
157
+
145
158
  children: IWzpzK8kmResponse[] = [];
146
159
  listDept: TCore.IDeptResponse[] = [];
147
160
  listItem: IWzpzItemResponse[] = [];
148
161
  listK0KM: IWzpzK0kmResponse[] = [];
149
162
  listType: IWzpzTypeResponse[] = [];
163
+
150
164
  listPath: TCore.IPathResponse[] = [];
165
+
166
+
167
+
168
+
169
+
170
+ constructor(data: Partial<IWzpzK8kmResponse> = {}) {
171
+ if (data) {
172
+ _.merge(this, _.pick(data, Object.keys(this)));
173
+ }
174
+ }
175
+
151
176
  }