20 lines
509 B
PHP
20 lines
509 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class BagPriceModel extends Model
|
||
|
|
{
|
||
|
|
protected $table = 'bag_price';
|
||
|
|
protected $primaryKey = 'bp_idx';
|
||
|
|
protected $returnType = 'object';
|
||
|
|
protected $useTimestamps = false;
|
||
|
|
protected $allowedFields = [
|
||
|
|
'bp_lg_idx', 'bp_bag_code', 'bp_bag_name',
|
||
|
|
'bp_order_price', 'bp_wholesale', 'bp_consumer',
|
||
|
|
'bp_start_date', 'bp_end_date', 'bp_state',
|
||
|
|
'bp_regdate', 'bp_moddate', 'bp_reg_mb_idx',
|
||
|
|
];
|
||
|
|
}
|