Commit ac1a0146 by zhoupeng

提交导入组织架构openapi接口

parent 0f5c0643
......@@ -32,7 +32,7 @@ public class SyncEmployeCdpController {
@GetMapping( "/synByCdpEmployee")
@ApiOperation(value = "新Cdp根据员工号同步员工信息")
@ApiOperation(value = "指定组织架构下某员工为企业管理员")
public Response<Boolean> synByCdpEmployee(@RequestParam("employeeNumber") String employeeNumber){
Boolean flag = syncEmployeCdpService.synByCdpEmployee(employeeNumber);
return Response.builderSuccess(flag);
......@@ -40,7 +40,7 @@ public class SyncEmployeCdpController {
@GetMapping( "/syncProgress")
@ApiOperation(value = "新Cdp根据员工号同步员工信息")
@ApiOperation(value = "查询组织架构导入进度接口")
public Response<String> syncProgress(){
String progress = syncEmployeCdpService.synProgress();
return Response.builderSuccess(progress);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment