|
@@ -5,6 +5,7 @@ import com.diagbot.vo.BillNeoVO;
|
|
import org.springframework.cache.annotation.Cacheable;
|
|
import org.springframework.cache.annotation.Cacheable;
|
|
import org.springframework.stereotype.Component;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
+import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
@@ -35,7 +36,7 @@ public class NeoFacade {
|
|
@Cacheable(value = "cache", key = "'drugCache'")
|
|
@Cacheable(value = "cache", key = "'drugCache'")
|
|
public Map<String, List<String>> getDrugCache() {
|
|
public Map<String, List<String>> getDrugCache() {
|
|
Map<String, List<String>> res = new HashMap<>();
|
|
Map<String, List<String>> res = new HashMap<>();
|
|
-
|
|
|
|
|
|
+ res.put("ddd", new ArrayList<>());
|
|
return res;
|
|
return res;
|
|
}
|
|
}
|
|
}
|
|
}
|