|
|
@@ -63,6 +63,17 @@ public class BasePerformanceIndicatorServiceImpl implements IBasePerformanceIndi
|
|
63
|
63
|
}
|
|
64
|
64
|
|
|
65
|
65
|
/**
|
|
|
66
|
+ * 查询考核指标列表(严格)
|
|
|
67
|
+ *
|
|
|
68
|
+ * @param basePerformanceIndicator 考核指标
|
|
|
69
|
+ * @return 考核指标
|
|
|
70
|
+ */
|
|
|
71
|
+ @Override
|
|
|
72
|
+ public List<BasePerformanceIndicator> selectBasePerformanceIndicatorStrictList(BasePerformanceIndicator basePerformanceIndicator) {
|
|
|
73
|
+ return basePerformanceIndicatorMapper.selectBasePerformanceIndicatorStrictList(basePerformanceIndicator);
|
|
|
74
|
+ }
|
|
|
75
|
+
|
|
|
76
|
+ /**
|
|
66
|
77
|
* 新增考核指标
|
|
67
|
78
|
*
|
|
68
|
79
|
* @param basePerformanceIndicator 考核指标
|
|
|
@@ -231,7 +242,7 @@ public class BasePerformanceIndicatorServiceImpl implements IBasePerformanceIndi
|
|
231
|
242
|
queryParam.setCategoryCodeOne(data.getCategoryCodeOne());
|
|
232
|
243
|
queryParam.setCategoryCode(data.getCategoryCode());
|
|
233
|
244
|
queryParam.setName(data.getName());
|
|
234
|
|
- List<BasePerformanceIndicator> existingList = basePerformanceIndicatorMapper.selectBasePerformanceIndicatorList(queryParam);
|
|
|
245
|
+ List<BasePerformanceIndicator> existingList = basePerformanceIndicatorMapper.selectBasePerformanceIndicatorStrictList(queryParam);
|
|
235
|
246
|
|
|
236
|
247
|
if (CollUtil.isEmpty(existingList)) {
|
|
237
|
248
|
// 新增
|