Agent.php 246 B

12345678910111213141516
  1. <?php
  2. namespace app\common\model;
  3. use app\common\model\TimeModel;
  4. class Agent extends TimeModel
  5. {
  6. protected $name = "agent";
  7. public function user ()
  8. {
  9. return $this->belongsTo('app\common\model\User', 'uid', 'id');
  10. }
  11. }