修改移动端,展示附件信息

This commit is contained in:
sh
2025-12-04 16:00:26 +08:00
parent c8f9b6547a
commit cb5d4d00a7
3 changed files with 56 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ import org.dromara.easyes.core.biz.EsPageInfo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest;
import java.util.List;
/**
@@ -148,9 +149,10 @@ public class AppJobController extends BaseController
*/
@ApiOperation("获取岗位详细信息")
@GetMapping(value = "/{jobId}")
public AjaxResult getInfo(@PathVariable("jobId") Long jobId)
public AjaxResult getInfo(@PathVariable("jobId") Long jobId, HttpServletRequest request)
{
Job job = jobService.selectJobByJobIdApp(jobId);
//Job job = jobService.selectJobByJobIdApp(jobId);
Job job = jobService.selectHttpJobByJobIdApp(jobId,request);
return success(job);
}