Merge branch 'cc_20250515_handle' into 'master'
Cc 20250515 handle See merge request hangzhou/java/custom_zxjp!87
This commit is contained in:
@@ -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("shopId")Long shopId,
|
||||
@RequestParam("subStage")Integer subStage) {
|
||||
return ResponseResult.success(shopService.getSubStageHandle(shopId,subStage));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user