作者 郭宇鹏
1 个管道 的构建 通过 耗费 1 秒

'1-6'

@@ -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 }