사용자 검색 기능 구현

This commit is contained in:
dohyeons
2025-08-26 14:23:22 +09:00
parent 6f68fa5639
commit 7267cc52eb
5 changed files with 473 additions and 153 deletions

View File

@@ -10,6 +10,12 @@ interface ApiResponse<T> {
message?: string;
errorCode?: string;
total?: number;
searchType?: "unified" | "single" | "advanced" | "none"; // 검색 타입 정보
pagination?: {
page: number;
limit: number;
totalPages: number;
};
// 백엔드 호환성을 위한 추가 필드
result?: boolean;
msg?: string;