Files
cunkebao_v3/Server/application/chukebao/model/AiSettings.php
2025-10-25 17:41:20 +08:00

17 lines
311 B
PHP

<?php
namespace app\chukebao\model;
use think\Model;
class AiSettings extends Model
{
protected $pk = 'id';
protected $name = 'ai_settings';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
}