装修调整
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user