fix:修复【根据字典编码获取所有选项】查不到Bug

This commit is contained in:
2023-05-06 15:27:08 +08:00
parent fb25c42e82
commit 98eda3b071
@@ -30,7 +30,7 @@ public class DictItemController {
*/ */
@ApiOperation(value = "根据字典编码获取所有选项") @ApiOperation(value = "根据字典编码获取所有选项")
@GetMapping("/{dicCode}") @GetMapping("/{dicCode}")
public ResponseMessage listByPageCode(String dicCode) { public ResponseMessage listByPageCode(@PathVariable String dicCode) {
return dictItemService.listByPageCode(dicCode); return dictItemService.listByPageCode(dicCode);
} }