wallet tron transactions

This commit is contained in:
cano
2024-03-25 06:15:36 +08:00
parent 4b8f205e86
commit 489090382f
83 changed files with 5424 additions and 1343 deletions

View File

@ -0,0 +1,20 @@
<?php
namespace App\Models\Wallet\Other;
use App\Models\Wallet\Base\WalletBaseModel;
class WalletSettingModel extends WalletBaseModel
{
protected $table = 'wallet_setting';
protected $primaryKey = 'id';
protected $fillable = [
'id',
'name',
'value',
'remark',
'created_at',
'updated_at',
];
}