13 lines
388 B
PHP
13 lines
388 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class InvtransModel extends Model {
|
|
protected $table = 'invtrans';
|
|
protected $primaryKey = 'itxid';
|
|
protected $allowedFields = [
|
|
'catalogid', 'unitgroupid', 'qty', 'lotnumber', 'origtype', 'origid',
|
|
'desttype', 'destid', 'purpose', 'conditions', 'actid',
|
|
'itxdatetime', 'apprtype', 'apprid', 'apprdate', 'createdate'
|
|
];
|
|
} |