query()->insertGetId($data); // 返回结果 return $id; } /** * 添加数据 * */ public function edit($id,$data) { // 更新时间 $data['update_time'] = time(); // 写入数据表 $result = $this->query()->where(['id'=>$id])->update($data); // 返回结果 return $result; } /** * 添加数据 * * @param int $productId 产品列表 * */ public function getListByProductId($productId){ // 写入数据表 $list = $this->query()->where([['product_id','=',$productId]])->get(['id','sort','thumb'])->toArray(); // 返回结果 return $list; } }