$params['title'], 'content' => $params['content'], 'type' => $params['type'], 'version' => $params['version'], 'dow_url' => $params['dow_url'], 'force' => $params['force'], 'quiet' => $params['quiet'] ]); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); self::setError($e->getMessage()); return false; } } /** * @notes 编辑app更新 * @param array $params * @return bool * @author likeadmin * @date 2023/08/31 11:08 */ public static function edit(array $params): bool { Db::startTrans(); try { AppUpdate::where('id', $params['id'])->update([ 'title' => $params['title'], 'content' => $params['content'], 'type' => $params['type'], 'version' => $params['version'], 'dow_url' => $params['dow_url'], 'force' => $params['force'], 'quiet' => $params['quiet'], 'update_time'=>time() ]); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); self::setError($e->getMessage()); return false; } } /** * @notes 删除app更新 * @param array $params * @return bool * @author likeadmin * @date 2023/08/31 11:08 */ public static function delete(array $params): bool { return AppUpdate::destroy($params['id']); } /** * @notes 获取app更新详情 * @param $params * @return array * @author likeadmin * @date 2023/08/31 11:08 */ public static function detail($params): array { return AppUpdate::findOrEmpty($params['id'])->toArray(); } }