GreenRetrieve.php 208 B

1234567891011
  1. <?php
  2. namespace app\green\model;
  3. use think\Model;
  4. class GreenRetrieve extends Model {
  5. //用户
  6. public function user(){
  7. return $this->hasOne('app\common\model\SystemUser','id','uid');
  8. }
  9. }