修改数据来源
This commit is contained in:
@@ -426,6 +426,7 @@ public class CmsJobController extends BaseController
|
|||||||
}
|
}
|
||||||
// 不发布
|
// 不发布
|
||||||
job.setIsPublish(0);
|
job.setIsPublish(0);
|
||||||
|
job.setDataSource("3");//微信岗位抓取
|
||||||
if (job.getJobContactList() == null) {
|
if (job.getJobContactList() == null) {
|
||||||
job.setJobContactList(new ArrayList<>());
|
job.setJobContactList(new ArrayList<>());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ public class Job extends BaseEntity
|
|||||||
@ApiModelProperty("是否发布 0未发布 1发布")
|
@ApiModelProperty("是否发布 0未发布 1发布")
|
||||||
private Integer isPublish;
|
private Integer isPublish;
|
||||||
|
|
||||||
@ApiModelProperty("数据来源 0系统自录,1 365平台同步,2招聘会同步,3岗位抓取")
|
@ApiModelProperty("数据来源 0系统自录,1 365平台同步,2招聘会同步,3岗位抓取,4互联网采集")
|
||||||
private String dataSource;
|
private String dataSource;
|
||||||
|
|
||||||
@ApiModelProperty("岗位链接")
|
@ApiModelProperty("岗位链接")
|
||||||
|
|||||||
@@ -1020,7 +1020,8 @@ public class JobServiceImpl extends ServiceImpl<JobMapper,Job> implements IJobSe
|
|||||||
}
|
}
|
||||||
job.setDescription(rowWork.getAcb22a());
|
job.setDescription(rowWork.getAcb22a());
|
||||||
job.setIsPublish(1);
|
job.setIsPublish(1);
|
||||||
job.setDataSource(rowWork.getORG());
|
//job.setDataSource(rowWork.getORG());
|
||||||
|
job.setDataSource("4");//互联网抓取
|
||||||
job.setJobUrl(rowWork.getACE760());
|
job.setJobUrl(rowWork.getACE760());
|
||||||
job.setRemark(string);
|
job.setRemark(string);
|
||||||
job.setDelFlag("0");
|
job.setDelFlag("0");
|
||||||
|
|||||||
Reference in New Issue
Block a user