|
|
|
@ -59,6 +59,7 @@ import org.springblade.system.feign.IUserClient;
|
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
|
import java.time.LocalDate; |
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.Date; |
|
|
|
|
import java.util.List; |
|
|
|
@ -367,6 +368,16 @@ public class ClassifyServiceImpl extends BaseServiceImpl<ClassifyMapper, Classif
|
|
|
|
|
beIndicatorsVO = indicatorsMapper.selectMyPoints(params); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
String startTime = (String) params.get("startTime"); |
|
|
|
|
String endTime = (String) params.get("endTime"); |
|
|
|
|
if (Func.isNotBlank(startTime)){ |
|
|
|
|
Date start = CommonUtil.getStartByDateStr(startTime); |
|
|
|
|
params.put("start",start); |
|
|
|
|
} |
|
|
|
|
if (Func.isNotBlank(endTime)){ |
|
|
|
|
Date end = CommonUtil.getEndByDateStr(endTime); |
|
|
|
|
params.put("end",end); |
|
|
|
|
} |
|
|
|
|
//查询分数
|
|
|
|
|
//查询我被考核的列表
|
|
|
|
|
Page<IndicatorsVO> indicatorsVOPage = indicatorsMapper.selectBeMyApiIndicators(page, params); |
|
|
|
|