Files
cunkebao_v3/Server/application/chukebao/model/AiFriendSettings.php

17 lines
324 B
PHP
Raw Normal View History

2025-09-17 16:51:11 +08:00
<?php
namespace app\chukebao\model;
use think\Model;
class AiFriendSettings extends Model
{
protected $pk = 'id';
protected $name = 'ai_friend_settings';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
}