Revert "docs: items 테이블 통합 완료 내용 반영"

This reverts commit e863d3762a.
This commit is contained in:
2025-12-16 10:08:07 +09:00
parent e863d3762a
commit aee6d12fd9
3 changed files with 71 additions and 108 deletions

View File

@@ -174,15 +174,13 @@ interface ItemPage {
group_id: number;
page_name: string;
item_type: 'FG' | 'PT' | 'SM' | 'RM' | 'CS';
source_table: 'items'; // 통합됨 (2025-12-15)
source_table: 'products' | 'materials';
absolute_path?: string;
is_active: boolean;
sections: ItemSection[]; // init 응답에 포함
}
```
> **통합 완료**: 기존 `products`/`materials` 분리 구조가 `items` 단일 테이블로 통합되었습니다.
### 3.2 ItemSection
```typescript
@@ -335,7 +333,6 @@ init API 응답에 `is_locked` 필드가 포함됩니다.
| 날짜 | 변경 내용 |
|------|----------|
| 2025-12-16 | items 테이블 통합 반영 (source_table: 'items') |
| 2025-12-09 | 시스템 기반 문서 전면 재작성 |
| 2025-11-27 | 잠금(Lock) 기능 추가 |
| 2025-11-26 | 독립 엔티티 아키텍처 적용 |