This commit is contained in:
zhangchenbiao
2023-06-30 20:16:00 +08:00
parent 41ef8bbc69
commit 5f8460a065

View File

@@ -24,7 +24,7 @@ public class EnterpriseUserController {
@ApiOperation("获取开发主管")
@GetMapping("/getDevelopmentDirectorList")
public ResponseResult getDevelopmentDirectorList(@RequestParam("wantShopArea") String wantShopArea){
public ResponseResult getDevelopmentDirectorList(@RequestParam(value = "wantShopArea",required = false) String wantShopArea){
return ResponseResult.success(enterpriseUserService.getDevelopmentDirectorList(wantShopArea));
}