publish
This commit is contained in:
@@ -105,25 +105,15 @@ public class CmsJobController extends BaseController
|
|||||||
{
|
{
|
||||||
return toAjax(jobService.deleteJobByJobIds(jobIds));
|
return toAjax(jobService.deleteJobByJobIds(jobIds));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation("候选人查询")
|
@ApiOperation("候选人查询")
|
||||||
@Log(title = "岗位", businessType = BusinessType.DELETE)
|
@Log(title = "岗位", businessType = BusinessType.DELETE)
|
||||||
@GetMapping("/candidates")
|
@GetMapping("/candidates")
|
||||||
|
@PreAuthorize("@ss.hasPermi('bussiness:job:candidates')")
|
||||||
public TableDataInfo candidates(Long jobId)
|
public TableDataInfo candidates(Long jobId)
|
||||||
{
|
{
|
||||||
startPage();
|
startPage();
|
||||||
List<CandidateVO> list = jobService.candidates(jobId);
|
List<CandidateVO> list = jobService.candidates(jobId);
|
||||||
return getDataTable(list);
|
return getDataTable(list);
|
||||||
}
|
}
|
||||||
@GetMapping("/import")
|
|
||||||
public AjaxResult importData()
|
|
||||||
{
|
|
||||||
jobService.importData();
|
|
||||||
return success();
|
|
||||||
}
|
|
||||||
@GetMapping("/importRow")
|
|
||||||
public AjaxResult importRow(@RequestParam String path)
|
|
||||||
{
|
|
||||||
jobService.importRow(path);
|
|
||||||
return success();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user