Comment.php 234 B

1234567891011121314
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Comment extends \app\common\model\Comment
  5. {
  6. public function user()
  7. {
  8. return $this->belongsTo('User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
  9. }
  10. }