init admin

This commit is contained in:
2025-11-07 09:56:20 +08:00
commit d9d7ddc05d
2718 changed files with 665424 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace app\model;
use app\model\Base;
/**
* 实名认证模型
* @property int $user_id
* @property string $realname
* @property string $idcard
* @property int $created_at
* @property int $updated_at
*/
class Realname extends Base
{
public function user()
{
return $this->belongsTo('User', 'user_id', 'id');//->setEagerlyType(0);
}
}