hyperf-view/builder/Generator/Stubs/Controller/treeRecycleList.stub

13 lines
408 B
Plaintext

/**
* 回收站列表树
* @return ResponseInterface
* @throws \Psr\Container\ContainerExceptionInterface
* @throws \Psr\Container\NotFoundExceptionInterface
*/
#[GetMapping("recycle"), Permission("{RECYCLE_PERMISSION}")]
public function recycle():ResponseInterface
{
return $this->success($this->service->getTreeListByRecycle($this->request->all()));
}