AuthGroupAccess.php 258 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: EDZ
  5. * Date: 2018/12/13
  6. * Time: 10:42
  7. */
  8. namespace app\common\model;
  9. class AuthGroupAccess extends Base
  10. {
  11. public function groupInfo()
  12. {
  13. return $this->hasOne('AuthGroup','id','group_id');
  14. }
  15. }