新增接口
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user