修改数据来源

This commit is contained in:
sh
2026-06-29 19:10:39 +08:00
parent f43ea32b93
commit ec3d0b4b33
3 changed files with 4 additions and 2 deletions

View File

@@ -426,6 +426,7 @@ public class CmsJobController extends BaseController
}
// 不发布
job.setIsPublish(0);
job.setDataSource("3");//微信岗位抓取
if (job.getJobContactList() == null) {
job.setJobContactList(new ArrayList<>());
}

View File

@@ -118,7 +118,7 @@ public class Job extends BaseEntity
@ApiModelProperty("是否发布 0未发布 1发布")
private Integer isPublish;
@ApiModelProperty("数据来源 0系统自录1 365平台同步2招聘会同步3岗位抓取")
@ApiModelProperty("数据来源 0系统自录1 365平台同步2招聘会同步3岗位抓取,4互联网采集")
private String dataSource;
@ApiModelProperty("岗位链接")

View File

@@ -1020,7 +1020,8 @@ public class JobServiceImpl extends ServiceImpl<JobMapper,Job> implements IJobSe
}
job.setDescription(rowWork.getAcb22a());
job.setIsPublish(1);
job.setDataSource(rowWork.getORG());
//job.setDataSource(rowWork.getORG());
job.setDataSource("4");//互联网抓取
job.setJobUrl(rowWork.getACE760());
job.setRemark(string);
job.setDelFlag("0");