Merge remote-tracking branch 'origin/支付优化测试' into 支付优化测试

This commit is contained in:
qjq
2024-11-20 16:55:35 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ public class StoreGoodsInventoryRecordController {
}
@GetMapping("/recordCount")
@Operation(summary = "获得商品出入库记录分页")
@Operation(summary = "商品出入库记录统计")
public CommonResult<InventoryStatisticsVO> getRecordCount(@Valid InventoryRecordPageReqVO pageReqVO) {
InventoryStatisticsVO recordCount = storeGoodsInventoryRecordService.getRecordCount(pageReqVO);
return success(recordCount);

View File

@ -113,7 +113,7 @@ public class MemberUserController {
return success(true);
}
@GetMapping("/get ")
@GetMapping("/get")
@Operation(summary = "获得会员用户")
@Parameter(name = "id", description = "编号", required = true, example = "1024")
@PreAuthorize("@ss.hasPermission('member:user:query')")