|
|
@ -308,11 +308,11 @@ public class ClassScoreServiceImpl implements ClassScoreService {
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
projectValuationAbsolute = foundProject.getProjectValuationAbsolute();//绝对估值结论得分
|
|
|
|
projectValuationAbsolute = foundProject.getProjectValuationAbsolute();//绝对估值结论得分
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foundProjectConclusion = foundProjectConclusion.replaceAll("[^a-zA-Z0-9]", "");
|
|
|
|
foundProjectConclusion = foundProjectConclusion.replaceAll("[^\\u4E00-\\u9FA5]", "");
|
|
|
|
serviceDueDiligence = serviceDueDiligence.replaceAll("[^a-zA-Z0-9]", "");
|
|
|
|
serviceDueDiligence = serviceDueDiligence.replaceAll("[^\\u4E00-\\u9FA5]", "");
|
|
|
|
financialDueDiligence = financialDueDiligence.replaceAll("[^a-zA-Z0-9]", "");
|
|
|
|
financialDueDiligence = financialDueDiligence.replaceAll("[^\\u4E00-\\u9FA5]", "");
|
|
|
|
projectValuationRelative = projectValuationRelative.replaceAll("[^a-zA-Z0-9]", "");
|
|
|
|
projectValuationRelative = projectValuationRelative.replaceAll("[^\\u4E00-\\u9FA5]", "");
|
|
|
|
projectValuationAbsolute = projectValuationAbsolute.replaceAll("[^a-zA-Z0-9]", "");
|
|
|
|
projectValuationAbsolute = projectValuationAbsolute.replaceAll("[^\\u4E00-\\u9FA5]", "");
|
|
|
|
PerformanceScoreExample performanceScoreExample2 = new PerformanceScoreExample();
|
|
|
|
PerformanceScoreExample performanceScoreExample2 = new PerformanceScoreExample();
|
|
|
|
performanceScoreExample2.createCriteria().andSchoolIdEqualTo(schoolId).andFlowIdEqualTo(flowId);
|
|
|
|
performanceScoreExample2.createCriteria().andSchoolIdEqualTo(schoolId).andFlowIdEqualTo(flowId);
|
|
|
|
|
|
|
|
|
|
|
@ -409,6 +409,14 @@ public class ClassScoreServiceImpl implements ClassScoreService {
|
|
|
|
return new ResultEntity<>(HttpStatus.NOT_FOUND);
|
|
|
|
return new ResultEntity<>(HttpStatus.NOT_FOUND);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
|
|
|
String projectValuationAbsolute = "12312,./,/@#$好好好好好好好好好好好好好好好好AFGGGS好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好好";
|
|
|
|
|
|
|
|
projectValuationAbsolute = projectValuationAbsolute.replaceAll("[^\\u4E00-\\u9FA5]", "");
|
|
|
|
|
|
|
|
System.out.println(projectValuationAbsolute);
|
|
|
|
|
|
|
|
int length = projectValuationAbsolute.length();
|
|
|
|
|
|
|
|
System.out.println(length);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 用户成绩详情展示
|
|
|
|
/* 用户成绩详情展示
|
|
|
|
* @author xcj
|
|
|
|
* @author xcj
|
|
|
|
* @Date 2023/11/29
|
|
|
|
* @Date 2023/11/29
|
|
|
|