Skip to content

Commit

Permalink
Merge pull request #284 from mineadmin/patch-dictTypeList
Browse files Browse the repository at this point in the history
feat: 字典分类新增list接口
  • Loading branch information
kanyxmo committed Jun 22, 2024
2 parents b3c98d5 + 2f3ab3c commit 7fdba34
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions app/System/Controller/DataCenter/DictTypeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,17 @@ public function index(): ResponseInterface
return $this->success($this->service->getPageList($this->request->all()));
}

/**
* @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
#[GetMapping("list")]
public function list(): ResponseInterface
{
return $this->success($this->service->getList($this->request->all()));
}

/**
* 回收站列表.
* @throws ContainerExceptionInterface
Expand Down

0 comments on commit 7fdba34

Please sign in to comment.