dataLists(new AppUpdateLists()); } /** * @notes 添加app更新 * @return \think\response\Json * @author likeadmin * @date 2023/08/31 11:08 */ public function add() { $params = (new AppUpdateValidate())->post()->goCheck('add'); $result = AppUpdateLogic::add($params); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(AppUpdateLogic::getError()); } /** * @notes 编辑app更新 * @return \think\response\Json * @author likeadmin * @date 2023/08/31 11:08 */ public function edit() { $params = (new AppUpdateValidate())->post()->goCheck('edit'); $result = AppUpdateLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(AppUpdateLogic::getError()); } /** * @notes 删除app更新 * @return \think\response\Json * @author likeadmin * @date 2023/08/31 11:08 */ public function delete() { $params = (new AppUpdateValidate())->post()->goCheck('delete'); AppUpdateLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取app更新详情 * @return \think\response\Json * @author likeadmin * @date 2023/08/31 11:08 */ public function detail() { $params = (new AppUpdateValidate())->goCheck('detail'); $result = AppUpdateLogic::detail($params); return $this->data($result); } }