123456789101112131415161718192021222324 |
- <?php
- namespace app\guard\model;
- use think\Model;
- class GuardUser extends Model{
-
- protected $pk = 'id';
-
-
- public function user(){
- return $this->hasOne('app\common\model\SystemUser','id','uid');
- }
-
- public function history(){
- return $this->hasMany('GuardHistory','uid','uid');
- }
- }
|