增加,门店恢复状态,删除门店接口

This commit is contained in:
shuo.wang
2025-03-24 15:01:45 +08:00
parent 3397e9035e
commit 879db971ea
10 changed files with 71 additions and 29 deletions

View File

@@ -117,12 +117,15 @@ public class PCShopController {
return ResponseResult.success(transferLogService.getTransferLogPage(pageNum, pageSize, lineId, lineShopType));
}
@ApiOperation("门店结束跟进")
@GetMapping("/shopClose")
public ResponseResult<Boolean> shopClose(@RequestParam("shopId")Long shopId) {
return ResponseResult.success(shopService.shopClose(shopId));
}
@ApiOperation("门店恢复状态")
@GetMapping("/updateShopStatue")
public ResponseResult<Boolean> updateShopStatue(@RequestParam("shopId")Long shopId) {
return ResponseResult.success(shopService.updateShopStatue(shopId));
}
}