!269 存在问题

Merge pull request !269 from zhaoyang0415/N/A
This commit is contained in:
最菜的蔡 2023-04-11 09:03:38 +00:00 committed by Gitee
commit 4c03676a3e
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -63,6 +63,7 @@ public class StoreManagerController {
@ApiImplicitParam(name = "storeId", value = "店铺ID", required = true, paramType = "path", dataType = "String")
@GetMapping(value = "/get/detail/{storeId}")
public ResultMessage<StoreDetailVO> detail(@PathVariable String storeId) {
// todo 对于刚提交审核的信息需要等待缓存失效后才能操作,否则缓存信息还在
return ResultUtil.data(storeDetailService.getStoreDetailVO(storeId));
}