update application table information
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user