[游戏管理]游戏配置
This commit is contained in:
20
app/common/model/GameConfig.php
Normal file
20
app/common/model/GameConfig.php
Normal 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',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user