作者 郭宇鹏
1 个管道 的构建 失败 耗费 16 秒

'0041'

@@ -424,6 +424,7 @@ class Production extends BaseApi @@ -424,6 +424,7 @@ class Production extends BaseApi
424 ->where('pid',$val['id']) 424 ->where('pid',$val['id'])
425 ->count(); 425 ->count();
426 } 426 }
  427 + Db::commit();
427 } catch (Exception $e) { 428 } catch (Exception $e) {
428 Db::rollback(); 429 Db::rollback();
429 $this->error($e->getMessage()); 430 $this->error($e->getMessage());
@@ -36,7 +36,7 @@ class ProductionComment extends BaseModel @@ -36,7 +36,7 @@ class ProductionComment 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
42 /** 42 /**