Merge branch 'master' of gitee.com:beijing_hongye_huicheng/lilishop
This commit is contained in:
@@ -58,7 +58,7 @@ public class PageDataManagerController {
|
||||
}
|
||||
|
||||
@ApiOperation(value = "页面列表")
|
||||
@GetMapping("pageDataList")
|
||||
@GetMapping("/pageDataList")
|
||||
public ResultMessage<IPage<PageDataListVO>> pageDataList(PageVO pageVO, PageDataDTO pageDataDTO) {
|
||||
return ResultUtil.data(pageDataService.getPageDataList(pageVO, pageDataDTO));
|
||||
}
|
||||
|
||||
@@ -111,8 +111,8 @@ public class StoreManagerController {
|
||||
|
||||
@ApiOperation(value = "查询一级分类列表")
|
||||
@ApiImplicitParam(name = "storeId", value = "店铺id", required = true, dataType = "String", paramType = "path")
|
||||
@GetMapping(value = "/ManagementCategory/{storeId}")
|
||||
public ResultMessage<List<CategoryVO>> firstCategory(String storeId) {
|
||||
@GetMapping(value = "/managementCategory/{storeId}")
|
||||
public ResultMessage<List<CategoryVO>> firstCategory(@PathVariable String storeId) {
|
||||
return ResultUtil.data(this.storeDetailService.goodsManagementCategory(storeId));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user