|
|
@@ -136,7 +136,7 @@ public class CheckService {
|
|
|
//算法记录更新
|
|
|
if (alg.getCode() == 200) {
|
|
|
try {
|
|
|
- updateRequestRecordLog(alg.getData() != null?alg.getData():null, send);
|
|
|
+ updateRequestRecordLog(alg.getData() != null?Long.valueOf(alg.getData()+""):null, send);
|
|
|
} catch (Exception e) {
|
|
|
logger.error("【算法服务】 更新日志异常,异常信息",e);
|
|
|
}
|
|
|
@@ -213,6 +213,7 @@ public class CheckService {
|
|
|
algorithm.setSubId(subId);
|
|
|
algorithm.setAlgorithmType("image");
|
|
|
algorithm.setAlgorithmName(checkValid.getAlgorithmName());
|
|
|
+ logger.info("日志Model:"+JSONObject.toJSONString(algorithm));
|
|
|
return laboratoryService.saveAlgorithmData(algorithm);
|
|
|
}
|
|
|
|