backup: 사용하지 않는 파일 삭제 전 복구 지점

- 전체 371개 파일 중 82개 미사용 파일 식별
- Phase 1: 33개 파일 삭제 예정 (100% 안전)
- Phase 2: 30개 파일 삭제 검토 예정
- Phase 3: 19개 파일 수동 검토 예정

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
JiWoong Sul
2025-09-02 19:51:40 +09:00
parent 650cd4be55
commit c419f8f458
149 changed files with 12934 additions and 3644 deletions

View File

@@ -60,6 +60,15 @@ class ResponseInterceptor extends Interceptor {
return false; // 페이지네이션 응답은 변형 안함
}
// Hierarchy API 응답은 변형하지 않음 (data 배열 + meta 객체)
if (data.containsKey('data') && data.containsKey('meta')) {
debugPrint('[ResponseInterceptor] Hierarchy 체크 - data 타입: ${data['data'].runtimeType}, meta 타입: ${data['meta'].runtimeType}');
if (data['data'] is List && data['meta'] is Map) {
debugPrint('[ResponseInterceptor] Hierarchy 응답 감지 - 변형 안함');
return false; // Hierarchy 응답은 변형 안함
}
}
// 엔티티 단일 응답 패턴 (vendor, model, equipment 등)
// id, name이 있으면서 registered_at 또는 created_at이 있으면 엔티티 응답으로 간주
if (data.containsKey('id') &&