@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use CodeIgniter\Model;
|
||||
|
||||
class SchoolYearClosingItemModel extends Model
|
||||
{
|
||||
protected $table = 'school_year_closing_items';
|
||||
protected $primaryKey = 'id';
|
||||
protected $returnType = 'array';
|
||||
protected $useTimestamps = true;
|
||||
|
||||
protected $allowedFields = [
|
||||
'closing_batch_id',
|
||||
'family_id',
|
||||
'source_balance',
|
||||
'credit_amount',
|
||||
'adjustment_amount',
|
||||
'carry_forward_amount',
|
||||
'target_invoice_id',
|
||||
'target_adjustment_id',
|
||||
'status',
|
||||
'error_message',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user