- bending_items 전용 테이블 생성 (items.options → 정규 컬럼 승격) - bending_models 전용 테이블 생성 (가이드레일/케이스/하단마감재 통합) - bending_data JSON 통합 (별도 테이블 → bending_items.bending_data 컬럼) - bending_item_mappings 테이블 DROP (bending_items.code에 흡수) - BendingItemService/BendingCodeService → BendingItem 모델 전환 - GuiderailModelService component 이미지 자동 복사 - ItemsFileController bending_items/bending_models 폴백 지원 - Swagger 스키마 업데이트
29 lines
772 B
PHP
29 lines
772 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\V1;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class BendingItemIndexRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'item_sep' => 'nullable|string|in:스크린,철재',
|
|
'item_bending' => 'nullable|string',
|
|
'material' => 'nullable|string',
|
|
'model_UA' => 'nullable|string|in:인정,비인정',
|
|
'model_name' => 'nullable|string',
|
|
'legacy_bending_num' => 'nullable|integer',
|
|
'search' => 'nullable|string|max:100',
|
|
'page' => 'nullable|integer|min:1',
|
|
'size' => 'nullable|integer|min:1|max:200',
|
|
];
|
|
}
|
|
}
|