@ningboyz/types 1.1.95 → 1.1.96
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,3 +1,4 @@
|
|
|
1
|
+
import { IFlowMainResponse } from "../flow";
|
|
1
2
|
import type { IDictResponse } from "./IDictResponse";
|
|
2
3
|
import type { IPartResponse } from "./IPartResponse";
|
|
3
4
|
|
|
@@ -154,6 +155,8 @@ export interface ISysMenuWithExpdResponse {
|
|
|
154
155
|
get4PartType: IPartResponse[];
|
|
155
156
|
/** 国库角色名称 */
|
|
156
157
|
get4PartText: string;
|
|
158
|
+
/** 审批流程数据 */
|
|
159
|
+
flowType: IFlowMainResponse[];
|
|
157
160
|
}
|
|
158
161
|
|
|
159
162
|
export class TSysMenuWithExpdResponse implements ISysMenuWithExpdResponse {
|
|
@@ -306,4 +309,5 @@ export class TSysMenuWithExpdResponse implements ISysMenuWithExpdResponse {
|
|
|
306
309
|
pathTypeText: string = "";
|
|
307
310
|
get4PartType: IPartResponse[] = [];
|
|
308
311
|
get4PartText: string = "";
|
|
312
|
+
flowType: IFlowMainResponse[] = [];
|
|
309
313
|
}
|