|
@@ -12,6 +12,7 @@ import com.hz.employmentsite.services.service.WechatService;
|
|
|
import com.hz.employmentsite.services.service.jobUserManager.RecommendMgtService;
|
|
|
import com.hz.employmentsite.util.StringUtils;
|
|
|
import com.hz.employmentsite.vo.jobUserManager.*;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -19,6 +20,7 @@ import org.springframework.stereotype.Service;
|
|
|
import java.util.*;
|
|
|
|
|
|
@Service("RecommendMgtService")
|
|
|
+@Slf4j
|
|
|
public class RecommendMgtServiceImpl implements RecommendMgtService {
|
|
|
|
|
|
@Autowired
|
|
@@ -161,7 +163,7 @@ public class RecommendMgtServiceImpl implements RecommendMgtService {
|
|
|
pcRecommendMgtMapper.updateByPrimaryKey(pcRecommendMgt);
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
-
|
|
|
+ log.error("sendUser:微信消息推送失败," + e.getMessage());
|
|
|
}
|
|
|
});
|
|
|
}
|
|
@@ -195,7 +197,7 @@ public class RecommendMgtServiceImpl implements RecommendMgtService {
|
|
|
pcRecommendMgtMapper.updateByPrimaryKey(pcRecommendMgt);
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
-
|
|
|
+ log.error("sendCompany:微信消息推送失败," + e.getMessage());
|
|
|
}
|
|
|
});
|
|
|
}
|