[游戏管理]游戏配置

This commit is contained in:
2026-04-15 14:21:27 +08:00
parent b6e5f09479
commit e2097450eb
6 changed files with 343 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace app\common\model;
use support\think\Model;
/**
* 游戏/平台动态参数KV
*/
class GameConfig extends Model
{
protected $name = 'game_config';
protected $autoWriteTimestamp = true;
protected $type = [
'create_time' => 'integer',
'update_time' => 'integer',
];
}