20 lines
530 B
PHP
20 lines
530 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class PackagingUnitModel extends Model
|
||
|
|
{
|
||
|
|
protected $table = 'packaging_unit';
|
||
|
|
protected $primaryKey = 'pu_idx';
|
||
|
|
protected $returnType = 'object';
|
||
|
|
protected $useTimestamps = false;
|
||
|
|
protected $allowedFields = [
|
||
|
|
'pu_lg_idx', 'pu_bag_code', 'pu_bag_name',
|
||
|
|
'pu_box_per_pack', 'pu_pack_per_sheet', 'pu_total_per_box',
|
||
|
|
'pu_start_date', 'pu_end_date', 'pu_state',
|
||
|
|
'pu_regdate', 'pu_moddate', 'pu_reg_mb_idx',
|
||
|
|
];
|
||
|
|
}
|