mini 查询督导接口

This commit is contained in:
shuo.wang
2025-04-03 17:24:25 +08:00
parent 060ef9f9af
commit 24705ab1a2

View File

@@ -113,13 +113,13 @@ public class MiniShopController {
request.setCurLineId(lineId);
return ResponseResult.success(pointService.updateRentContract(request));
}
@ApiOperation("获取状态为完成的门店列表")
@GetMapping("/getStatusOver")
public ResponseResult<List<MiniShopsResponse>> getShopListAndStatusIsOverByLineId(@RequestParam("lineId")Long lineId) {
@ApiOperation("功开店的门店")
@GetMapping("/getShopListSuccessOpen")
public ResponseResult<List<MiniShopsResponse>> getShopListSuccessOpen(@RequestParam("lineId")Long lineId) {
return ResponseResult.success(shopService.getShopListSuccessOpen(lineId));
}
@ApiOperation("获取状态为完成的门店列表")
@ApiOperation("获取推荐铺位和我创建的")
@GetMapping("/getRecommendedOrMyPointList")
public ResponseResult<PageInfo<MiniPointPageVO>> getRecommendedOrMyPointList(@RequestParam("request")MiniPointRequest request) {
request.setLineId(PartnerUserHolder.getUser().getLineId());