generated from dxfeng/secondev-chapanda-feishu
24 lines
857 B
Java
24 lines
857 B
Java
package com.engine.recruit.service.impl;
|
|
|
|
import com.engine.common.util.ServiceUtil;
|
|
import com.engine.core.impl.Service;
|
|
import com.engine.integration.gconst.IntegrationConstant;
|
|
import com.engine.integration.service.impl.ScheduleServiceImpl;
|
|
import com.engine.recruit.service.RecruitScheduleService;
|
|
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @author:dxfeng
|
|
* @createTime: 2024/03/27
|
|
* @version: 1.0
|
|
*/
|
|
public class RecruitScheduleServiceImpl extends Service implements RecruitScheduleService {
|
|
@Override
|
|
public Map<String, Object> immediatelyRun(Map<String, Object> param) {
|
|
Map<String, Object> apiDatas = ServiceUtil.getService(ScheduleServiceImpl.class, user).immediatelyRun(param, user);
|
|
apiDatas.put(IntegrationConstant.INTEGRATION_RESULT_STATUS, IntegrationConstant.INTEGRATION_RESULT_STATUS_NORMAL);
|
|
return apiDatas;
|
|
}
|
|
}
|