update application page, table.

This commit is contained in:
2026-04-16 11:54:58 +07:00
parent 720f13e9bb
commit 925b42199c
12 changed files with 265 additions and 91 deletions
+2 -4
View File
@@ -10,11 +10,9 @@ export interface MediaDto {
export interface ApplicationDto {
id: string;
user_id: string;
// Sửa từ number thành string | number
verify_type: string | number | string[] | number[];
verify_type: string | number ;
content: string;
is_deleted: boolean;
// Sửa status để nhận cả 1,2,3 hoặc PENDING, APPROVED...
status: string | number;
reviewed_by: string;
review_note: string;
@@ -32,7 +30,7 @@ export interface GetApplicationsParams {
sort?: string;
order?: "asc" | "desc";
statuses?: string[];
verify_types?: string[];
verify_types?: string;
created_from?: string;
created_to?: string;
reviewed_by?: string;