接口缓存-MaxAge
@SuppressWarnings("rawtypes")
@GetMapping("/info")
public Result getInfo(String shopId, HttpServletResponse response) {
if(StringUtils.isBlank(shopId)){
return Result.failure("参数不能为空");
}
response.setHeader("Cache-Control", "max-age=120");
return Result.success(shopAnalysisFacade.getInfo(shopId));
}