27 lines
504 B
PHP
27 lines
504 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class PlanRemarkModel extends Model
|
|
{
|
|
protected $table = 'c_plan_remark';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = [
|
|
'plan_id',
|
|
'remarks',
|
|
'created_on',
|
|
'created_by',
|
|
'updated_on',
|
|
'updated_by',
|
|
'is_active'
|
|
];
|
|
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'created_on';
|
|
protected $updatedField = 'updated_on';
|
|
|
|
|
|
}
|