@ningboyz/types 1.6.140 → 1.6.141
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 +1 -1
- package/src/core/IDeptResponse.ts +10 -11
package/package.json
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { construct, destruct } from "@aximario/json-tree";
|
|
2
2
|
import _ from "lodash";
|
|
3
|
-
import
|
|
4
|
-
import { TBaseResponse } from "../base/IBaseResponse";
|
|
5
|
-
import { TCore } from "../index.ts";
|
|
6
|
-
import type { IDictResponse } from "./IDictResponse";
|
|
7
|
-
import { IUserLiteResponse } from "./IUserLiteResponse.ts";
|
|
3
|
+
import { IBaseResponse, TCore } from "../index.ts";
|
|
4
|
+
import { TBaseResponse } from "../base/IBaseResponse.ts";
|
|
8
5
|
|
|
9
6
|
export interface IDeptResponse extends IBaseResponse<IDeptResponse> {
|
|
10
7
|
codeFull: string;
|
|
@@ -75,11 +72,12 @@ export interface IDeptResponse extends IBaseResponse<IDeptResponse> {
|
|
|
75
72
|
deptPara: string;
|
|
76
73
|
|
|
77
74
|
/** 部门类型 */
|
|
78
|
-
listBMLX: IDictResponse[];
|
|
75
|
+
listBMLX: TCore.IDictResponse[];
|
|
79
76
|
/** 部门类型(新) */
|
|
80
|
-
listType: IDictResponse[];
|
|
77
|
+
listType: TCore.IDictResponse[];
|
|
81
78
|
/** 部门用户 */
|
|
82
|
-
listUser: IUserLiteResponse[];
|
|
79
|
+
listUser: TCore.IUserLiteResponse[];
|
|
80
|
+
listGKBM: TCore.IDeptResponse[];
|
|
83
81
|
}
|
|
84
82
|
|
|
85
83
|
export class TDeptResponse extends TBaseResponse<IDeptResponse> implements IDeptResponse {
|
|
@@ -142,11 +140,12 @@ export class TDeptResponse extends TBaseResponse<IDeptResponse> implements IDept
|
|
|
142
140
|
k2kmKmbm: string = "";
|
|
143
141
|
|
|
144
142
|
/** 部门类型 */
|
|
145
|
-
listBMLX: IDictResponse[] = [];
|
|
143
|
+
listBMLX: TCore.IDictResponse[] = [];
|
|
146
144
|
/** 部门类型(新) */
|
|
147
|
-
listType: IDictResponse[] = [];
|
|
145
|
+
listType: TCore.IDictResponse[] = [];
|
|
148
146
|
/** 部门用户 */
|
|
149
|
-
listUser: IUserLiteResponse[] = [];
|
|
147
|
+
listUser: TCore.IUserLiteResponse[] = [];
|
|
148
|
+
listGKBM: TCore.IDeptResponse[] = [];
|
|
150
149
|
|
|
151
150
|
constructor(data: any = {}) {
|
|
152
151
|
super();
|