修改查询es时,jobUrl问题

This commit is contained in:
sh
2026-06-03 12:37:29 +08:00
parent d1eadf7f5d
commit d8c6a32e74

View File

@@ -183,7 +183,7 @@ public class ESJobSearchImpl implements IESJobSearchService
esJobDocument.setEncryptJobId(encryptJobId);
CompanyVo vo=job.getCompanyVo();
esJobDocument.setCompanyVoJson(JSON.toJSONString(vo));
esJobDocument.setAppJobUrl("https://www.xjksly.cn/app#/packageA/pages/post/post?jobId="+ Base64.getEncoder().encodeToString(String.valueOf(job.getJobId()).getBytes()));
esJobDocument.setAppJobUrl("https://www.xjksly.cn/app#/packageA/pages/post/post?jobId="+ SM4Utils.encryptEcb(SM4Constants.SM4_KET,String.valueOf(job.getJobId())));
if(!StringUtil.isEmptyOrNull(job.getScale())){
esJobDocument.setScale(Integer.valueOf(job.getScale()));
}else {