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