面试稽核操作first-commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
package com.cool.store.controller;
|
||||
|
||||
import com.cool.store.response.ResponseResult;
|
||||
import com.cool.store.service.InspectionService;
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @author Fun Li
|
||||
* @version 1.0
|
||||
* @date 2023/7/19 16:48
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/inspection/interview")
|
||||
@Api(tags = "面试稽核")
|
||||
public class InspectionController {
|
||||
|
||||
@Autowired
|
||||
private InspectionService inspectionService;
|
||||
|
||||
@PostMapping("/submission")
|
||||
public ResponseResult interviewInspectionSubmit() {
|
||||
return ResponseResult.success();
|
||||
}
|
||||
|
||||
@PostMapping("/revocation")
|
||||
public ResponseResult interviewInspectionRevoke() {
|
||||
return ResponseResult.success();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user