update
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package org.jeecg.modules.database.mapper;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.apache.ibatis.annotations.Select;
|
||||
@@ -13,6 +14,7 @@ import java.util.List;
|
||||
* @Date: 2024-11-04
|
||||
* @Version: V1.0
|
||||
*/
|
||||
@DS("client")
|
||||
public interface NasaDataRecordMapper extends BaseMapper<NasaDataRecord> {
|
||||
|
||||
@Select("SELECT SUM(total_count_lhs) FROM nasa_data_record where total_count_lhs is not null")
|
||||
|
||||
@@ -155,20 +155,22 @@ public class ExperimentReviewServiceImpl extends ServiceImpl<ExperimentReviewRes
|
||||
result.setMatchedRuleList(matchedRuleList);
|
||||
ExperimentReviewDetail first = CollUtil.getFirst(detailList);
|
||||
ExperimentReviewDetail last = CollUtil.getLast(detailList);
|
||||
if (detailList.size() >= 1 && last.getResult().equals(ExperimentReviewResultEnum.NOT_PASS)) {
|
||||
if (CollUtil.isEmpty(detailList)) {
|
||||
return ExperimentReviewResultEnum.UNKNOWN;
|
||||
}
|
||||
if (detailList.size() == 1) {
|
||||
return last.getResult();
|
||||
}
|
||||
if (detailList.size() > 1) {
|
||||
if (last.getResult().equals(ExperimentReviewResultEnum.NOT_PASS)) {
|
||||
return ExperimentReviewResultEnum.NOT_PASS;
|
||||
}
|
||||
if (detailList.size() > 1 && !StrUtil.equals(first.getResult(), last.getResult())) {
|
||||
if (!StrUtil.equals(first.getResult(), last.getResult())) {
|
||||
return ExperimentReviewResultEnum.UNKNOWN;
|
||||
}
|
||||
if (detailList.size() == 1 && last.getResult().equals(ExperimentReviewResultEnum.FINAL_PASS)) {
|
||||
return ExperimentReviewResultEnum.FINAL_PASS;
|
||||
}
|
||||
if (detailList.size() == 2 && StrUtil.equals(first.getResult(), last.getResult())) {
|
||||
if (StrUtil.equals(first.getResult(), last.getResult())) {
|
||||
return first.getResult();
|
||||
}
|
||||
if (detailList.size() == 2 && !StrUtil.equals(first.getResult(), last.getResult())) {
|
||||
return ExperimentReviewResultEnum.UNKNOWN;
|
||||
}
|
||||
if (detailList.size() > 2) {
|
||||
return ExperimentReviewResultEnum.UNKNOWN;
|
||||
|
||||
Reference in New Issue
Block a user