|
@@ -47,6 +47,15 @@ public class CacheController {
|
|
|
return RespDTO.onSuc(true);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "重新加载药物缓存[by:zhoutg]",
|
|
|
+ notes = "")
|
|
|
+ @PostMapping("/clearDrug")
|
|
|
+ @SysLogger("clearDrug")
|
|
|
+ public RespDTO<Boolean> clearDrug() {
|
|
|
+ cacheFacade.loadDrugTypeCache();
|
|
|
+ return RespDTO.onSuc(true);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "清除标准词转换缓存[by:zhoutg]",
|
|
|
notes = "")
|
|
|
@PostMapping("/clearStandConvert")
|