통계 분석(전년대비·월별·계절별), 수급계획·LOT 수불, 지정판매소·실사·메뉴 링크 등을 포함한다. Co-authored-by: Cursor <cursoragent@cursor.com>
26 lines
548 B
PHP
26 lines
548 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class BlockchainLedgerModel extends Model
|
|
{
|
|
protected $table = 'blockchain_ledger';
|
|
protected $primaryKey = 'bl_idx';
|
|
protected $returnType = 'object';
|
|
protected $useTimestamps = false;
|
|
protected $allowedFields = [
|
|
'bl_created_at',
|
|
'bl_tx_type',
|
|
'bl_entity_uuid',
|
|
'bl_entity_version',
|
|
'bl_payload',
|
|
'bl_previous_hash',
|
|
'bl_hash',
|
|
'bl_nonce',
|
|
'bl_actor_idx',
|
|
'bl_lg_idx',
|
|
];
|
|
}
|