master:去掉获取档口简易信息权限校验;

pull/1121/head
liujiang 2025-11-01 12:24:51 +08:00
parent 1e33c0e6ce
commit 486be57891
1 changed files with 0 additions and 1 deletions

View File

@ -99,7 +99,6 @@ public class StoreController extends XktBaseController {
return R.ok(BeanUtil.toBean(storeService.getInfo(storeId), StoreResVO.class));
}
@PreAuthorize("@ss.hasAnyRoles('admin,general_admin,store,seller,agent')||@ss.hasSupplierSubRole()")
@ApiOperation(value = "PC 商城首页 获取档口基础信息", httpMethod = "GET", response = R.class)
@GetMapping(value = "/simple/{storeId}")
public R<StoreSimpleResVO> getSimpleInfo(@PathVariable("storeId") Long storeId) {