|
@@ -5,9 +5,11 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.ims.eval.dao.PerformanceBenchmarkInfoMapper;
|
|
|
import com.ims.eval.entity.PerformanceBenchmarkInfo;
|
|
|
-import com.ims.eval.service.IPerformanceBenchmarkInfoService;
|
|
|
+import com.ims.eval.service.*;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import javax.annotation.Resource;
|
|
|
+
|
|
|
/**
|
|
|
* @author hlf
|
|
|
* @date 2024/3/28 14:07
|
|
@@ -16,6 +18,21 @@ import org.springframework.stereotype.Service;
|
|
|
@Service
|
|
|
public class PerformanceBenchmarkInfoServiceImpl extends ServiceImpl<PerformanceBenchmarkInfoMapper, PerformanceBenchmarkInfo> implements IPerformanceBenchmarkInfoService {
|
|
|
|
|
|
+ @Resource
|
|
|
+ private IEvaluateRuleService evaluateRuleService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IEvaluateRuleInfoService evaluateRuleInfoService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IOrganizationEvaluationService organizationEvaluationService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IOrganizationEvaluationInfoService organizationEvaluationInfoService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IOrganizationEvaluationRuleService organizationEvaluationRuleService;
|
|
|
+
|
|
|
@Override
|
|
|
public IPage<PerformanceBenchmarkInfo> listPage(Integer pageNum, Integer pageSize, Integer year, Integer quarter, Integer monthly, String manageCategory) {
|
|
|
if (null == pageNum || null == pageSize) {
|
|
@@ -26,4 +43,12 @@ public class PerformanceBenchmarkInfoServiceImpl extends ServiceImpl<Performance
|
|
|
return baseMapper.selectListPage(page, year, quarter, monthly, manageCategory);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 寻标
|
|
|
+ */
|
|
|
+ private void xb(){
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|