@ningboyz/types 1.0.177 → 1.0.179
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
|
@@ -109,6 +109,14 @@ export interface IUnitResponse extends IBaseResponse<IUnitResponse[]> {
|
|
|
109
109
|
|
|
110
110
|
/** 折旧方法 */
|
|
111
111
|
realZjff: string;
|
|
112
|
+
/**
|
|
113
|
+
* 父级编码
|
|
114
|
+
*/
|
|
115
|
+
parentCode: string;
|
|
116
|
+
/**
|
|
117
|
+
* 父级名称
|
|
118
|
+
*/
|
|
119
|
+
parentName: string;
|
|
112
120
|
|
|
113
121
|
withCard: IUnitWithCardResponse;
|
|
114
122
|
}
|
|
@@ -176,6 +184,9 @@ export class TUnitResponse extends TBaseResponse<IUnitResponse[]> implements IUn
|
|
|
176
184
|
/** 折旧方法 */
|
|
177
185
|
realZjff: string = "";
|
|
178
186
|
|
|
187
|
+
parentCode: string = "";
|
|
188
|
+
parentName: string = "";
|
|
189
|
+
|
|
179
190
|
listType: IPzptTypeResponse[] = [];
|
|
180
191
|
listCnfg: IPzptCnfgResponse[] = [];
|
|
181
192
|
zclbtype: number = 0;
|
|
@@ -74,6 +74,11 @@ export interface IMyoaMainResponse {
|
|
|
74
74
|
yzcgZbbh: string; //招标编号
|
|
75
75
|
editedBy: string; //编制人
|
|
76
76
|
|
|
77
|
+
fileType: number; //文件类型
|
|
78
|
+
fileText: string;
|
|
79
|
+
dzyzType: number; //印章类型
|
|
80
|
+
dzyzText: string;
|
|
81
|
+
|
|
77
82
|
yzhtHtbh: string;
|
|
78
83
|
yzhtQdrq: number;
|
|
79
84
|
yzhtYsrq: number;
|
|
@@ -160,6 +165,7 @@ export interface IMyoaMainResponse {
|
|
|
160
165
|
|
|
161
166
|
listLock: IMyoaMainResponse[];
|
|
162
167
|
listCard: ICardMainResponse[];
|
|
168
|
+
/** 会议室 */
|
|
163
169
|
listChat: IMyoaRoomResponse[];
|
|
164
170
|
listPath: IPathResponse[];
|
|
165
171
|
listSQBM: IDeptResponse[];
|
|
@@ -258,6 +264,11 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
258
264
|
userName: string = "";
|
|
259
265
|
userMain: number = 0;
|
|
260
266
|
|
|
267
|
+
fileType: number = 0; //文件类型
|
|
268
|
+
fileText: string = "";
|
|
269
|
+
dzyzType: number = 0; //印章类型
|
|
270
|
+
dzyzText: string = "";
|
|
271
|
+
|
|
261
272
|
authStat: number = 0;
|
|
262
273
|
autoCpbh: string = "";
|
|
263
274
|
authDate: number = 0;
|
|
@@ -302,6 +313,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
302
313
|
|
|
303
314
|
listLock: IMyoaMainResponse[] = [];
|
|
304
315
|
listCard: ICardMainResponse[] = [];
|
|
316
|
+
/** 会议室 */
|
|
305
317
|
listChat: TMyoaRoomResponse[] = [];
|
|
306
318
|
listPath: IPathResponse[] = [];
|
|
307
319
|
listSQBM: IDeptResponse[] = [];
|
|
@@ -32,6 +32,10 @@ export interface IViewCtrlResponse extends IBaseResponse<IViewCtrlResponse> {
|
|
|
32
32
|
title: string;
|
|
33
33
|
name: string;
|
|
34
34
|
icon: string;
|
|
35
|
+
/**
|
|
36
|
+
* 按钮权限
|
|
37
|
+
* */
|
|
38
|
+
permissions: IViewCtrlResponse[];
|
|
35
39
|
}
|
|
36
40
|
|
|
37
41
|
export class TViewCtrlResponse extends TBaseResponse<IViewCtrlResponse> implements IViewCtrlResponse {
|
|
@@ -64,6 +68,7 @@ export class TViewCtrlResponse extends TBaseResponse<IViewCtrlResponse> implemen
|
|
|
64
68
|
title: string = "";
|
|
65
69
|
name: string = "";
|
|
66
70
|
icon: string = "";
|
|
71
|
+
permissions: IViewCtrlResponse[] = [];
|
|
67
72
|
|
|
68
73
|
static toTree(listView: IViewCtrlResponse[]) {
|
|
69
74
|
listView.forEach((element) => {
|