新增接口

This commit is contained in:
zhangchenbiao
2024-04-17 16:40:32 +08:00
parent fb924859a2
commit 9f4eb4e4d0
15 changed files with 225 additions and 4 deletions

View File

@@ -134,6 +134,13 @@ public class PointController {
return ResponseResult.success(pointService.getMyPointPage(request));
}
@ApiOperation("全部铺位")
@PostMapping("/getTeamPointPage")
public ResponseResult<PageInfo<PointPageVO>> getTeamPointPage(@RequestBody @Validated AllPointPageRequest request) {
request.setCurUserId(CurrentUserHolder.getUserId());
return ResponseResult.success(pointService.getTeamPointPage(request));
}
@ApiOperation("获取单个铺位审批记录")
@GetMapping("/getAuditRecord")
public ResponseResult<List<PointAuditRecordVO>> getPointAllAuditRecord(@RequestParam("pointId")Long pointId) {