Files
sam-kd/guiderail/_row.php

21 lines
694 B
PHP
Raw Normal View History

<?php
$num = $row['num'] ?? '';
$is_deleted = $row['is_deleted'] ?? '';
$registration_date = $row['registration_date'] ?? '';
$check_type = $row['check_type'] ?? '';
$author = $row['author'] ?? '';
$remark = $row['remark'] ?? '';
$update_log = $row['update_log'] ?? '';
// 추가된 컬럼
$model_name = $row['model_name'] ?? '';
$rail_width = $row['rail_width'] ?? '';
$rail_length = $row['rail_length'] ?? '';
$finishing_type = $row['finishing_type'] ?? '';
$bending_components = $row['bending_components'] ?? '';
$firstitem = $row['firstitem'] ?? '';
$search_keyword = $row['search_keyword'] ?? '';
$model_UA = $row['model_UA'] ?? '';
$material_summary = $row['material_summary'] ?? '';
?>