Merge remote-tracking branch 'origin/cc_20230520_partner' into cc_20230520_partner

This commit is contained in:
俞扬
2023-06-25 14:44:32 +08:00

View File

@@ -1,6 +1,8 @@
package com.cool.store.controller;
import com.cool.store.response.ResponseResult;
import com.cool.store.service.EnterpriseUserService;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.*;
@@ -20,5 +22,10 @@ public class EnterpriseUserController {
@Resource
public EnterpriseUserService enterpriseUserService;
@ApiOperation("获取开发主管")
@GetMapping("/getDevelopmentDirectorList")
public ResponseResult getDevelopmentDirectorList(@RequestParam("wantShopArea") String wantShopArea){
return ResponseResult.success(enterpriseUserService.getDevelopmentDirectorList(wantShopArea));
}
}