@ningboyz/types 1.6.131 → 1.6.132

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.6.131",
4
+ "version": "1.6.132",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -136,6 +136,7 @@ export interface IUnitResponse extends IBaseResponse<IUnitResponse> {
136
136
  gnkmCode: string; //功能科目
137
137
  gnkmName: string; //功能科目
138
138
  gzdfType: number; // 是否启用工资代发
139
+ listPath: TCore.IPathResponse[];
139
140
  }
140
141
 
141
142
  export class TUnitResponse extends TBaseResponse<IUnitResponse> implements IUnitResponse {
@@ -220,6 +221,7 @@ export class TUnitResponse extends TBaseResponse<IUnitResponse> implements IUnit
220
221
  gnkmCode: string = ""; //功能科目
221
222
  gnkmName: string = ""; //功能科目
222
223
  gzdfType: number = 0; // 是否启用工资代发
224
+ listPath: TCore.IPathResponse[] = [];
223
225
 
224
226
  constructor(card: any = {}) {
225
227
  super();
@@ -1,5 +1,6 @@
1
1
  import _ from "lodash";
2
2
  import { IWzpzUserBodyResponse } from "./IWzpzUserBodyResponse";
3
+ import { TCore } from "..";
3
4
 
4
5
  export interface IWzpzTypeResponse {
5
6
  key: string;
@@ -53,6 +54,7 @@ export interface IWzpzTypeResponse {
53
54
  inGender: number;
54
55
  children: IWzpzTypeResponse[];
55
56
  userBody: IWzpzUserBodyResponse[];
57
+ listDict: TCore.IDictResponse[];
56
58
  }
57
59
 
58
60
  export class TWzpzTypeResponse implements IWzpzTypeResponse {
@@ -105,7 +107,7 @@ export class TWzpzTypeResponse implements IWzpzTypeResponse {
105
107
  typePara: string = "";
106
108
  userBody: IWzpzUserBodyResponse[] = [];
107
109
  children: IWzpzTypeResponse[] = [];
108
-
110
+ listDict: TCore.IDictResponse[] = [];
109
111
  constructor(data: Partial<IWzpzTypeResponse> = {}) {
110
112
  if (data) {
111
113
  _.merge(this, _.pick(data, Object.keys(this)));