mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
20 lines
354 B
PHP
20 lines
354 B
PHP
<?php
|
|
declare (strict_types=1);
|
|
/**
|
|
* @since 2017-11-02
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
|
|
namespace app\model;
|
|
|
|
use think\model\relation\HasOne;
|
|
|
|
class AdminUser extends Base {
|
|
|
|
protected $autoWriteTimestamp = true;
|
|
|
|
public function userData(): HasOne {
|
|
return $this->hasOne('AdminUserData', 'uid', 'id');
|
|
}
|
|
}
|