临期线索

This commit is contained in:
苏竹红
2023-07-05 16:40:16 +08:00
parent 1b88c11fd0
commit be70a0531c
10 changed files with 69 additions and 27 deletions

View File

@@ -21,6 +21,7 @@ import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
/**
@@ -92,7 +93,7 @@ public class DeskController {
@GetMapping(path = "/queryInterviewPlan")
@ApiOperation("是否有面试与临期线索")
public ResponseResult<InterviewPlanVO> queryInterviewPlanVO(){
public ResponseResult<HashMap<String, InterviewPlanVO>> queryInterviewPlanVO(){
String userId = CurrentUserHolder.getUserId();
return ResponseResult.success(deskService.getInterviewPlan(userId));
}