正在显示
3 个修改的文件
包含
3 行增加
和
3 行删除
@@ -36,6 +36,6 @@ class ArticleComment extends BaseModel | @@ -36,6 +36,6 @@ class ArticleComment extends BaseModel | ||
36 | * 关联用户表 | 36 | * 关联用户表 |
37 | */ | 37 | */ |
38 | public function User(){ | 38 | public function User(){ |
39 | - return $this->belongsTo('user','user_id','id')->field('id,avatar,nickname,username,authlist'); | 39 | + return $this->belongsTo('user','user_id','id'); |
40 | } | 40 | } |
41 | } | 41 | } |
@@ -10,6 +10,6 @@ class ExhibitionComment extends BaseModel | @@ -10,6 +10,6 @@ class ExhibitionComment extends BaseModel | ||
10 | * 关联用户表 | 10 | * 关联用户表 |
11 | */ | 11 | */ |
12 | public function User(){ | 12 | public function User(){ |
13 | - return $this->belongsTo('user','user_id','id')->field('id,avatar,nickname,username,authlist'); | 13 | + return $this->belongsTo('user','user_id','id'); |
14 | } | 14 | } |
15 | } | 15 | } |
@@ -11,7 +11,7 @@ class Production extends BaseModel | @@ -11,7 +11,7 @@ class Production extends BaseModel | ||
11 | * 关联用户表 | 11 | * 关联用户表 |
12 | */ | 12 | */ |
13 | public function User(){ | 13 | public function User(){ |
14 | - return $this->belongsTo('user','user_id','id')->field('id,avatar,nickname,username,authlist'); | 14 | + return $this->belongsTo('user','user_id','id'); |
15 | } | 15 | } |
16 | 16 | ||
17 | } | 17 | } |
-
请 注册 或 登录 后发表评论