面试稽核操作first-commit

This commit is contained in:
feng.li
2023-07-19 16:57:26 +08:00
parent 368e4757c3
commit f7fb454481
9 changed files with 748 additions and 0 deletions

View File

@@ -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();
}
}