forked from mahdahar/crm-summit
9 lines
234 B
PHP
9 lines
234 B
PHP
|
|
<?php namespace App\Models;
|
||
|
|
|
||
|
|
use CodeIgniter\Model;
|
||
|
|
|
||
|
|
class ActTypeModel extends Model {
|
||
|
|
protected $table = 'acttype';
|
||
|
|
protected $primaryKey = 'acttypeid';
|
||
|
|
protected $allowedFields = [ 'acttypecode', 'fulltext', 'createdate' ];
|
||
|
|
}
|