사이트·관리자 봉투 물류 기능(수불·통계·레포트·재고·발주)과 DB·메뉴·E2E를 운영 반영한다.
통계 분석(전년대비·월별·계절별), 수급계획·LOT 수불, 지정판매소·실사·메뉴 링크 등을 포함한다. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
25
app/Models/BlockchainLedgerModel.php
Normal file
25
app/Models/BlockchainLedgerModel.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?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',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user