Files
commie c153975eed 7
2026-01-08 05:42:44 +08:00

20 lines
371 B
PHP
Executable File

<?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);
}
}