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

@@ -44,6 +44,11 @@ abstract class CompanyRepository {
/// Returns: 삭제 성공/실패 여부
Future<Either<Failure, void>> deleteCompany(int id);
/// 회사 복구 (Soft Delete 복원)
/// [id] 복구할 회사 고유 식별자
/// Returns: 복구된 회사 정보
Future<Either<Failure, Company>> restoreCompany(int id);
/// 회사 상태 토글 (활성화/비활성화)
/// [id] 상태를 변경할 회사 고유 식별자
/// Returns: 상태 변경된 회사 정보