fix:ai审批工具修改阈值方便测试 #51

Merged
cuihaojie merged 1 commits from fix/Example_Modify_the_judgment_threshold into test 1 year ago

@ -188,7 +188,8 @@ public class OcrSearchHistoryServiceImpl extends ServiceImpl<OcrSearchHistoryMap
if(selectaisp.size()!=0){
Object pictureResult = selectaisp.get("pictureResult");
String pictureResultStr = pictureResult.toString();
if ("100.0".equals(pictureResultStr)) {
// if ("100.0".equals(pictureResultStr)) {
if (Double.parseDouble(pictureResultStr) < 90.0) {
similarComplete++;
Long pictureId = (Long) selectaisp.get("pictureId");
if (pictureId != null) {

Loading…
Cancel
Save