21 lines
326 B
PHP
21 lines
326 B
PHP
<?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',
|
||
];
|
||
}
|