19 lines
495 B
PHP
19 lines
495 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class BagReceivingModel extends Model
|
||
|
|
{
|
||
|
|
protected $table = 'bag_receiving';
|
||
|
|
protected $primaryKey = 'br_idx';
|
||
|
|
protected $returnType = 'object';
|
||
|
|
protected $useTimestamps = false;
|
||
|
|
protected $allowedFields = [
|
||
|
|
'br_bo_idx', 'br_lg_idx', 'br_bag_code', 'br_bag_name',
|
||
|
|
'br_qty_box', 'br_qty_sheet', 'br_receive_date',
|
||
|
|
'br_receiver_idx', 'br_sender_name', 'br_type', 'br_regdate',
|
||
|
|
];
|
||
|
|
}
|