This commit is contained in:
chenyanchang
2026-06-04 18:11:35 +08:00
parent 24eced691e
commit 715cc55a8c
2 changed files with 3 additions and 0 deletions

View File

@@ -187,6 +187,7 @@ public class CmsJobController extends BaseController
jobList.stream().forEach(it->{
Job job=new Job();
BeanUtils.copyBeanProp(job, it);
job.setScale(it.getScale() != null ? String.valueOf(it.getScale()) : "0");
job.setCompanyVo(JSON.parseObject(it.getCompanyVoJson(), CompanyVo.class));
jobs.add(job);
});