fix(工作报告): 修复工作报告存在的若干问题。
feat(加班申请): 支持批量审批。
This commit is contained in:
16
src/typings/api/overtime-application.d.ts
vendored
16
src/typings/api/overtime-application.d.ts
vendored
@@ -59,6 +59,22 @@ declare namespace Api {
|
||||
reason?: string | null;
|
||||
}
|
||||
|
||||
interface OvertimeApplicationBatchActionParams {
|
||||
ids: string[];
|
||||
reason?: string | null;
|
||||
}
|
||||
|
||||
interface OvertimeApplicationBatchFailItem {
|
||||
id: string;
|
||||
reason: string;
|
||||
}
|
||||
|
||||
interface OvertimeApplicationBatchActionResult {
|
||||
successCount: number;
|
||||
failCount: number;
|
||||
failItems: OvertimeApplicationBatchFailItem[];
|
||||
}
|
||||
|
||||
interface OvertimeApplicationApprovalRecord {
|
||||
id: string;
|
||||
overtimeApplicationId: string;
|
||||
|
||||
Reference in New Issue
Block a user