获取AI结果刷新时间接口

master
chenfei 2 years ago
parent e200a0842b
commit e16698a4ed

@ -37,6 +37,9 @@ public class AppController extends BaseController
@Resource @Resource
private ITPatientHospitalDoctorService itPatientHospitalDoctorService; private ITPatientHospitalDoctorService itPatientHospitalDoctorService;
@Resource
private ISysConfigService configService;
/** /**
* AI * AI
@ -113,4 +116,11 @@ public class AppController extends BaseController
tRecordService.updateTRecord(tRecord); tRecordService.updateTRecord(tRecord);
return AjaxResult.success("更新状态成功",null); return AjaxResult.success("更新状态成功",null);
} }
@GetMapping(value = "/configKey/{configKey}")
@Log(title = "获取AI结果刷新时间接口")
public AjaxResult getConfigKey(@PathVariable String configKey)
{
return AjaxResult.success(configService.selectConfigByKey(configKey));
}
} }

Loading…
Cancel
Save