@ningboyz/types 1.1.92 → 1.1.93
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
|
@@ -147,6 +147,13 @@ export interface ISysMenuWithExpdResponse {
|
|
|
147
147
|
voidOnly: number;
|
|
148
148
|
whoBuild: number;
|
|
149
149
|
wldyPage: any[];
|
|
150
|
+
|
|
151
|
+
/** 附件类型名称 */
|
|
152
|
+
pathTypeText: string;
|
|
153
|
+
/** 国库角色数据 */
|
|
154
|
+
get4PartType: IPartResponse[];
|
|
155
|
+
/** 国库角色名称 */
|
|
156
|
+
get4PartText: string;
|
|
150
157
|
}
|
|
151
158
|
|
|
152
159
|
export class TSysMenuWithExpdResponse implements ISysMenuWithExpdResponse {
|
|
@@ -295,4 +302,8 @@ export class TSysMenuWithExpdResponse implements ISysMenuWithExpdResponse {
|
|
|
295
302
|
voidOnly: number = 0;
|
|
296
303
|
whoBuild: number = 0;
|
|
297
304
|
wldyPage: any[] = [];
|
|
305
|
+
|
|
306
|
+
pathTypeText: string = "";
|
|
307
|
+
get4PartType: IPartResponse[] = [];
|
|
308
|
+
get4PartText: string = "";
|
|
298
309
|
}
|