39 lines
855 B
PHP
39 lines
855 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class COShareStmtDetailsModel extends Model
|
|
{
|
|
protected $table = 'co_share_stmt_details';
|
|
protected $primaryKey = 'id';
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = 'array';
|
|
protected $useSoftDeletes = false;
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
'id',
|
|
'co_share_id',
|
|
'statement_id',
|
|
'actual_bp_amt',
|
|
'actual_tp_amt',
|
|
'actual_tep_amt',
|
|
'actual_bp_per',
|
|
'actual_tp_per',
|
|
'actual_tep_per',
|
|
'actual_bp_brokerage_amt',
|
|
'actual_tp_brokerage_amt',
|
|
'actual_tep_brokerage_amt',
|
|
'reward',
|
|
'exp_amt',
|
|
'variance',
|
|
'created_by',
|
|
'updated_by',
|
|
'is_active'
|
|
];
|
|
|
|
|
|
|
|
}
|