1.修改录用

2.修改录用、查看简历权限
This commit is contained in:
chenshaohua
2026-06-17 18:04:28 +08:00
parent 008dbea894
commit 06553100e6
4 changed files with 12 additions and 5 deletions

View File

@@ -15,6 +15,7 @@ import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletRequest;
import java.util.ArrayList;
import java.util.List;
@RestController
@@ -38,6 +39,9 @@ public class AppFileController extends BaseController {
@GetMapping("/list")
public TableDataInfo list(File file)
{
if(file.getBussinessid()==null){
return getDataTable(new ArrayList<>());
}
List<File> results = fileService.selectFileList(file);
return getDataTable(results);
}