This commit is contained in:
2026-08-14 14:03:36 +08:00
parent ae92f8b78c
commit 148b89c3ca
6 changed files with 38 additions and 38 deletions
+15 -15
View File
@@ -1615,14 +1615,14 @@ export interface InvoiceDetail {
export interface BankAccount {
id: string;
account_name: string;
bank_name: string;
account_no: string;
is_active: boolean;
is_default: boolean;
accountName: string;
bankName: string;
accountNo: string;
isActive: boolean;
isDefault: boolean;
description?: string | null;
created_at?: string | null;
updated_at?: string | null;
createdAt?: string | null;
updatedAt?: string | null;
}
// ── Scheduled Task ─────────────────────────────────────
@@ -1630,14 +1630,14 @@ export interface BankAccount {
export interface ScheduledTask {
id: string;
name: string;
task_type: 'external_api' | 'internal_method';
taskType: 'external_api' | 'internal_method';
schedule: string;
config?: string | null;
is_active: boolean;
last_run_at?: string | null;
last_status?: string | null;
last_error?: string | null;
created_by?: string | null;
created_at?: string | null;
updated_at?: string | null;
isActive: boolean;
lastRunAt?: string | null;
lastStatus?: string | null;
lastError?: string | null;
createdBy?: string | null;
createdAt?: string | null;
updatedAt?: string | null;
}