feat: Item Master 하이브리드 구조 전환 및 독립 API 추가

- CASCADE FK → 독립 엔티티 + entity_relationships 링크 테이블
- 독립 API 10개 추가 (섹션/필드/BOM CRUD, clone, usage)
- SectionTemplate 모델 제거 → ItemSection.is_template 통합
- 페이지-섹션, 섹션-필드, 섹션-BOM 링크/언링크 API 14개 추가
- Swagger 문서 업데이트
This commit is contained in:
2025-11-26 14:09:31 +09:00
parent 3fefb8ce26
commit bccfa19791
38 changed files with 5888 additions and 92 deletions

View File

@@ -13,6 +13,7 @@ class ItemMasterField extends Model
protected $fillable = [
'tenant_id',
'group_id',
'field_name',
'field_type',
'category',
@@ -28,6 +29,7 @@ class ItemMasterField extends Model
];
protected $casts = [
'group_id' => 'integer',
'is_common' => 'boolean',
'options' => 'array',
'validation_rules' => 'array',
@@ -41,4 +43,4 @@ class ItemMasterField extends Model
'deleted_by',
'deleted_at',
];
}
}