用户管理及下拉选查询接口开发

This commit is contained in:
haozq 2025-12-09 14:27:34 +08:00
parent 067cf4d43f
commit 15d261884e
1 changed files with 4 additions and 1 deletions

View File

@ -216,6 +216,9 @@ public class PublicLoginController {
return AjaxResult.error("查询失败"); return AjaxResult.error("查询失败");
} }
@PostMapping("findRoleType")
public RegisterBean findRoleType(RegisterBean bean) {
return registerService.findRoleType(bean);
}
} }