update application table information

This commit is contained in:
2026-04-17 09:47:04 +07:00
parent a366711d12
commit 9824f3b439
6 changed files with 278 additions and 272 deletions
+18 -5
View File
@@ -9,20 +9,33 @@ export interface MediaDto {
export interface ApplicationDto {
id: string;
user_id: string;
verify_type: string | number ;
user_id?: string;
verify_type: string | number;
content: string;
is_deleted: boolean;
status: string | number;
status: string | number;
reviewed_by: string;
review_note: string;
reviewed_at: string | null;
created_at: string;
updated_at?: string;
media: any[];
user: {
display_name?: string;
avatar_url?: string;
full_name?: string;
id?: string;
email?: string;
};
reviewer?: {
display_name?: string;
avatar_url?: string;
full_name?: string;
id?: string;
email?: string;
};
}
export interface GetApplicationsParams {
page?: number;
limit?: number;
@@ -46,4 +59,4 @@ export interface ApplicationResponse {
total_records: number;
total_pages: number;
};
}
}