chore: [misc] 거래처 통계 수정 + 문서 템플릿 file_id 추가 + 라우트 정리

- ClientService stats() active/inactive 카운트 추가
- DocumentTemplateSection file_id 컬럼 마이그레이션
- 논리 관계 문서 업데이트 (BendingItemMapping 추가)
This commit is contained in:
2026-03-17 13:56:08 +09:00
parent 0863afc8d0
commit 9358c4112e
6 changed files with 86 additions and 12 deletions

View File

@@ -12,7 +12,8 @@
* @property int $id
* @property int $template_id
* @property string $title 섹션 제목
* @property string|null $image_path 검사 기준 이미지 경로
* @property string|null $image_path 검사 기준 이미지 경로 (R2 key)
* @property int|null $file_id 도해 이미지 파일 ID (files 테이블 참조)
* @property int $sort_order 정렬 순서
*/
class DocumentTemplateSection extends Model
@@ -24,6 +25,7 @@ class DocumentTemplateSection extends Model
'title',
'description',
'image_path',
'file_id',
'sort_order',
];