TASK:订阅计划,测试修改

This commit is contained in:
2025-12-11 15:26:20 +08:00
parent 7f094265da
commit 5c2008ec4a
10 changed files with 136 additions and 42 deletions

View File

@@ -289,7 +289,7 @@ public class AccountController {
@PostMapping("organizationNameSearch")
@ApiOperation(value = "组织名模糊查询")
public Response<Set<String>> organizationNameSearch(@RequestParam("type") String type, @RequestParam("name") String name) {
public Response<Set<String>> organizationNameSearch(@RequestParam("type") String type, @RequestParam(value = "name", required = false) String name) {
return Response.success(accountService.organizationNameSearch(type, name));
}