邀请面试完善
This commit is contained in:
parent
eacf8e51cb
commit
3d0c1a29ed
|
@ -32,6 +32,8 @@ public class UploadController {
|
|||
AVATAR_TYPE.add("image/jpg");
|
||||
AVATAR_TYPE.add("image/jpeg");
|
||||
}
|
||||
//http://aiinterviewersystem.kooldns.cn
|
||||
private static final String BASE_URL="http://117.88.94.226:5380";
|
||||
|
||||
/**
|
||||
* 上传图片
|
||||
|
@ -94,7 +96,7 @@ public class UploadController {
|
|||
return R.error("文件存储出现异常");
|
||||
|
||||
}
|
||||
String RealFilePath="http://aiinterviewersystem.kooldns.cn/upload/picture/"+filename;
|
||||
String RealFilePath=BASE_URL+"/upload/picture/"+filename;
|
||||
Map<String,Object> data=new HashMap<>();
|
||||
data.put("image",RealFilePath);
|
||||
data.put("filename",filename);
|
||||
|
@ -155,7 +157,7 @@ public class UploadController {
|
|||
|
||||
}
|
||||
|
||||
String RealFilePath="http://aiinterviewersystem.kooldns.cn/upload/video/"+filename;
|
||||
String RealFilePath=BASE_URL+"/upload/video/"+filename;
|
||||
Map<String,Object> data=new HashMap<>();
|
||||
data.put("video",RealFilePath);
|
||||
data.put("filename",filename);
|
||||
|
@ -268,7 +270,7 @@ public class UploadController {
|
|||
return R.error("文件存储出现异常");
|
||||
|
||||
}
|
||||
String RealFilePath="http://aiinterviewersystem.kooldns.cn/upload/resume/"+fileName;
|
||||
String RealFilePath=BASE_URL+"/upload/resume/"+fileName;
|
||||
// ExecutorService pool= Executors.newCachedThreadPool();
|
||||
// pool.submit(new Runnable() {
|
||||
// @Override
|
||||
|
|
|
@ -3,7 +3,6 @@ package com.yzdx.AiInterviewer.controller.VxController;
|
|||
import com.yzdx.AiInterviewer.comment.R;
|
||||
import com.yzdx.AiInterviewer.entity.VxEntityDto.VxInterviewRecordDto;
|
||||
import com.yzdx.AiInterviewer.entity.VxEntityDto.VxNoticeDto;
|
||||
import com.yzdx.AiInterviewer.entity.vxEntity.VxInterviewNotice;
|
||||
import com.yzdx.AiInterviewer.service.InterviewNoticeService;
|
||||
import com.yzdx.AiInterviewer.service.VxService.VxCarouselChartService;
|
||||
import com.yzdx.AiInterviewer.service.VxService.VxInterviewApplicationService;
|
||||
|
|
|
@ -378,7 +378,11 @@ public class JobListServiceImpl extends ServiceImpl<JobMapper, JobEntity> implem
|
|||
|
||||
LambdaQueryWrapper<JobEntity> queryWrapper=new LambdaQueryWrapper<>();
|
||||
|
||||
try {
|
||||
queryWrapper.like(JobEntity::getJobName,jobName).or().like(JobEntity::getJobName,jobName.toString().substring(0,2));
|
||||
} catch (Exception e) {
|
||||
continue;
|
||||
}
|
||||
|
||||
List<JobEntity> jobEntities1 = jobMapper.selectList(queryWrapper);
|
||||
|
||||
|
|
Loading…
Reference in New Issue