Files
sam-kd/shutterbox/_row.php

20 lines
633 B
PHP
Raw Normal View History

<?php
$num = $row['num'] ?? '';
$is_deleted = $row['is_deleted'] ?? '';
$registration_date = $row['registration_date'] ?? '';
$exit_direction = $row['exit_direction'] ?? '';
$author = $row['author'] ?? '';
$remark = $row['remark'] ?? '';
$update_log = $row['update_log'] ?? '';
// 추가된 컬럼
$front_bottom_width = $row['front_bottom_width'] ?? '';
$rail_width = $row['rail_width'] ?? '';
$box_width = $row['box_width'] ?? '';
$box_height = $row['box_height'] ?? '';
$bending_components = $row['bending_components'] ?? '';
$search_keyword = $row['search_keyword'] ?? '';
$material_summary = $row['material_summary'] ?? '';
?>