Files
jongryangje/app/Models/BagIssueModel.php

19 lines
504 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Models;
use CodeIgniter\Model;
class BagIssueModel extends Model
{
protected $table = 'bag_issue';
protected $primaryKey = 'bi2_idx';
protected $returnType = 'object';
protected $useTimestamps = false;
protected $allowedFields = [
'bi2_lg_idx', 'bi2_year', 'bi2_quarter', 'bi2_issue_type', 'bi2_issue_date',
'bi2_dest_type', 'bi2_dest_name', 'bi2_bag_code', 'bi2_bag_name',
'bi2_qty', 'bi2_status', 'bi2_regdate',
];
}