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

@@ -1,13 +1,15 @@
import '../../data/models/rent_dto.dart';
abstract class RentRepository {
/// 임대 목록 조회
/// 임대 목록 조회 (백엔드 실제 파라미터)
Future<RentListResponse> getRents({
int page = 1,
int pageSize = 10,
String? search,
String? status,
int? equipmentHistoryId,
int perPage = 10,
int? equipmentId,
int? companyId,
bool? isActive,
DateTime? dateFrom,
DateTime? dateTo,
});
/// 임대 상세 조회
@@ -23,6 +25,6 @@ abstract class RentRepository {
Future<void> deleteRent(int id);
/// 장비 반납 처리
Future<RentDto> returnRent(int id, String returnDate);
/// 진행중인 임대 조회 (백엔드 실존 API)
Future<List<RentDto>> getActiveRents();
}