feat:处理人数据

This commit is contained in:
苏竹红
2025-05-16 16:37:36 +08:00
parent 683167687c
commit a69354a5cd
2 changed files with 153 additions and 65 deletions

View File

@@ -2,6 +2,7 @@ package com.cool.store.controller.webb;
import com.cool.store.context.CurrentUserHolder;
import com.cool.store.dto.TransferLogDTO;
import com.cool.store.dto.UserDTO;
import com.cool.store.request.*;
import com.cool.store.response.BranchShopDetailResponse;
import com.cool.store.response.BranchShopResponse;
@@ -135,4 +136,20 @@ public class PCShopController {
public ResponseResult<Integer> dateHandler(@RequestParam("pageSize")Integer pageSize,@RequestParam("pageNum")Integer pageNum) {
return ResponseResult.success(shopService.dateHandler(pageNum,pageSize));
}
@ApiOperation("获取意向阶段处理人信息")
@GetMapping("/getIntendSubStageHandle")
public ResponseResult<List<UserDTO>> getIntendSubStageHandle(@RequestParam("lineId")Long lineId,
@RequestParam("subStage")Integer subStage) {
return ResponseResult.success(shopService.getIntendSubStageHandle(lineId,subStage));
}
@ApiOperation("获取筹建阶段处理人信息")
@GetMapping("/getSubStageHandle")
public ResponseResult<List<UserDTO>> getSubStageHandle(@RequestParam("lineId")Long shopId,
@RequestParam("subStage")Integer subStage) {
return ResponseResult.success(shopService.getSubStageHandle(shopId,subStage));
}
}