24 lines
499 B
PHP
24 lines
499 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class BagIssueItemCodeModel extends Model
|
||
|
|
{
|
||
|
|
protected $table = 'bag_issue_item_code';
|
||
|
|
protected $primaryKey = 'bic_idx';
|
||
|
|
protected $returnType = 'object';
|
||
|
|
protected $useTimestamps = false;
|
||
|
|
protected $allowedFields = [
|
||
|
|
'bic_lg_idx',
|
||
|
|
'bic_bi2_idx',
|
||
|
|
'bic_bag_code',
|
||
|
|
'bic_issue_code',
|
||
|
|
'bic_qty',
|
||
|
|
'bic_cancel_qty',
|
||
|
|
'bic_state',
|
||
|
|
'bic_regdate',
|
||
|
|
];
|
||
|
|
}
|