Map<String, Object> thisdayParams = new HashMap<>();//有错误红色波浪线
thisdayParams.put("isComplete",ClueConstant.IS_VALID_NOT);
thisdayParams.put("planActionDate", LocalDateTime.now().format(formatter));
thisdayParams.put("planActionDateEnd", LocalDateTime.now().format(formatter));
thisdayParams.put("orgRole",orgRole1);
Page<ClueActionedVO> firstTouchTodayPlanPage= new Page(1, 1);
recordMapper.queryTouchTask(firstTouchTodayPlanPage, todayParams);
logger.info("==============首触清洗今日未完成数==={}",firstTouchTodayPlanPage.getTotal());
todayTaskCountVO.setFirstTouchTodayPlanCount(firstTouchTodayPlanPage.getTotal());
return todayTaskCountVO;