|
@@ -78,6 +78,7 @@ public class BehospitalInfoController {
|
|
|
@SysLogger("analyze")
|
|
|
@Transactional
|
|
|
public RespDTO<AnalyzeDTO> analyze(@RequestBody AnalyzeVO analyzeVO) {
|
|
|
+ analyzeVO.setUseCrfCache(true);
|
|
|
return RespDTO.onSuc(behospitalInfoFacade.analyze(analyzeVO));
|
|
|
}
|
|
|
|
|
@@ -153,7 +154,8 @@ public class BehospitalInfoController {
|
|
|
"<br>" +
|
|
|
"type:类型过滤(1:出院时间比当前时间早3天前的病历(例如:长兴病历))<br>" +
|
|
|
"hosptialIdList:医院列表id,1:长兴,3:台州,2:邵逸夫<br>" +
|
|
|
- "filterFlag: 筛选病历数据:0:未评分的病历,【推荐使用】;1:全部病历,【谨慎使用】")
|
|
|
+ "filterFlag: 筛选病历数据:0:未评分的病历,【推荐使用】;1:全部病历,【谨慎使用】<br>" +
|
|
|
+ "useCrfCache: 是否使用crf缓存(true:使用crf缓存,false:不使用)")
|
|
|
@PostMapping("/execule")
|
|
|
@SysLogger("execule")
|
|
|
public RespDTO<Boolean> execule(@RequestBody TaskVO taskVO) {
|