chore: 통합 테스트 환경과 보고서 리모트 구성

This commit is contained in:
JiWoong Sul
2025-10-14 18:11:57 +09:00
parent 8067416c09
commit 7e0f7b1c55
25 changed files with 1608 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
import 'package:superport_v2/features/reporting/domain/entities/report_download_result.dart';
import 'package:superport_v2/features/reporting/domain/entities/report_export_request.dart';
/// 보고서 다운로드 관련 리포지토리 계약.
abstract class ReportingRepository {
/// 재고 트랜잭션 보고서를 내보낸다.
Future<ReportDownloadResult> exportTransactions(ReportExportRequest request);
/// 결재 보고서를 내보낸다.
Future<ReportDownloadResult> exportApprovals(ReportExportRequest request);
}