装修调整

This commit is contained in:
shuo.wang
2025-08-06 19:20:13 +08:00
parent 0cc58a252e
commit fe13e9edfa
9 changed files with 93 additions and 0 deletions

View File

@@ -184,4 +184,11 @@ public class DataHandlerController {
dataHandlerServer.dataHandlerCreateStore();
return ResponseResult.success(true);
}
@ApiOperation("红圈通数据处理")
@GetMapping("/dataHandlerPushHqt")
public ResponseResult<Boolean> dataHandlerPushHqt(){
dataHandlerServer.dataHandlerPushHqt();
return ResponseResult.success(true);
}
}

View File

@@ -171,4 +171,10 @@ public class PCShopController {
public ResponseResult<ShopStageInfoVO> getShopStageStatus(@RequestParam("shopId")Long shopId, @RequestParam("subStage")Integer subStage) {
return ResponseResult.success(shopService.getShopStageStatus(shopId, subStage));
}
@ApiOperation("是否展示装修阶段按钮")
@GetMapping("/isShowButton")
public ResponseResult<Boolean> isShowButton(@RequestParam("shopId")Long shopId) {
return ResponseResult.success(shopService.isShowButton(shopId));
}
}