Files
cycle_api/app/Models/Wallet/Other/WalletSettingModel.php
2024-03-25 06:15:36 +08:00

21 lines
361 B
PHP

<?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',
];
}