Files
CKB-Interface/application/chukebao/model/FriendSettings.php
2026-01-05 10:25:32 +08:00

17 lines
322 B
PHP

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