审批流模块

This commit is contained in:
2025-08-15 17:08:50 +08:00
parent 303a9df916
commit 45ec52eb77
314 changed files with 51644 additions and 124 deletions

View File

@@ -0,0 +1,12 @@
// 请求响应参数不包含data
export interface Result {
isSuccess: boolean;
message: string;
status: number;
}
// 请求响应参数包含data
export interface ResultData<T = any> extends Result {
[x: string]: any;
data: T;
}