获取配置类型的详情接收参数修改

pull/57/head
Liyanjun 2023-07-03 21:55:19 +08:00
parent 92e26fd63e
commit 83a1812769
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ public class SysConfigTypeController {
* @since 2023/6/28 17:00 * @since 2023/6/28 17:00
*/ */
@GetResource(name = "获取配置类型的详情", path = "/sysConfigType/detail") @GetResource(name = "获取配置类型的详情", path = "/sysConfigType/detail")
public ResponseData<DictDetail> detail(@RequestBody @Validated(SysConfigTypeParam.detail.class) SysConfigTypeParam sysConfigTypeParam) { public ResponseData<DictDetail> detail( @Validated(SysConfigTypeParam.detail.class) SysConfigTypeParam sysConfigTypeParam) {
DictDetail detail = sysConfigTypeService.detail(sysConfigTypeParam); DictDetail detail = sysConfigTypeService.detail(sysConfigTypeParam);
return new SuccessResponseData<>(detail); return new SuccessResponseData<>(detail);
} }