Files
sam-kd/guiderail/_request.php

20 lines
862 B
PHP
Raw Normal View History

<?php
$num = $_REQUEST['num'] ?? '';
$is_deleted = $_REQUEST['is_deleted'] ?? '';
$registration_date = $_REQUEST['registration_date'] ?? '';
$check_type = $_REQUEST['check_type'] ?? '';
$author = $_REQUEST['author'] ?? '';
$remark = $_REQUEST['remark'] ?? '';
$update_log = $_REQUEST['update_log'] ?? '';
// 추가된 컬럼
$model_name = $_REQUEST['model_name'] ?? '';
$rail_width = $_REQUEST['rail_width'] ?? '';
$rail_length = $_REQUEST['rail_length'] ?? '';
$finishing_type = $_REQUEST['finishing_type'] ?? '';
$bending_components = $_REQUEST['bending_components'] ?? '';
$model_UA = $_REQUEST['model_UA'] ?? ''; // 인정/비인정
$firstitem = $_REQUEST['firstitem'] ?? ''; // 대분류(스크린/철재)
$search_keyword = $_REQUEST['search_keyword'] ?? ''; // 품목검색어
$material_summary = $_REQUEST['material_summary'] ?? ''; // 자재요약
?>