feat(mng): 아카이브 레코드 batch 그룹핑 UI 구현

- ArchivedRecordService: batch_id 기준 그룹핑 쿼리 추가
- Controller: batchId 파라미터로 상세 조회 변경
- 목록: 작업 설명, 레코드 타입, 레코드 수 표시
- 상세: batch 내 모든 레코드를 카드 형태로 표시
- 한번의 삭제 작업이 하나의 행으로 표시됨
This commit is contained in:
2025-11-26 23:16:39 +09:00
parent d0b843057e
commit d45ccfb325
8 changed files with 192 additions and 146 deletions

View File

@@ -12,6 +12,8 @@ class ArchivedRecord extends Model
protected $table = 'archived_records';
protected $fillable = [
'batch_id',
'batch_description',
'record_type',
'original_id',
'main_data',