批量处理云流水订货阶段接口
This commit is contained in:
@@ -1,10 +1,7 @@
|
||||
package com.cool.store.controller.webb;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.cool.store.dto.AskBotTokenDTO;
|
||||
import com.cool.store.dto.GetAccessTokenDTO;
|
||||
import com.cool.store.dto.StatusRefreshDTO;
|
||||
import com.cool.store.dto.StoreDTO;
|
||||
import com.cool.store.dto.*;
|
||||
import com.cool.store.request.OpenApiStoreRequest;
|
||||
import com.cool.store.response.ResponseResult;
|
||||
import com.cool.store.response.bigdata.ApiResponse;
|
||||
|
||||
@@ -1,12 +1,15 @@
|
||||
package com.cool.store.controller.webb;
|
||||
|
||||
import com.cool.store.context.CurrentUserHolder;
|
||||
import com.cool.store.dto.BatchStatusRefreshDTO;
|
||||
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;
|
||||
import com.cool.store.response.ResponseResult;
|
||||
import com.cool.store.response.bigdata.ApiResponse;
|
||||
import com.cool.store.service.OpenApiService;
|
||||
import com.cool.store.service.ShopService;
|
||||
import com.cool.store.service.TransferLogService;
|
||||
import com.cool.store.vo.shop.MiniShopPageVO;
|
||||
@@ -38,6 +41,8 @@ public class PCShopController {
|
||||
private ShopService shopService;
|
||||
@Resource
|
||||
private TransferLogService transferLogService;
|
||||
@Resource
|
||||
private OpenApiService openApiService;
|
||||
|
||||
@ApiOperation("获取店铺列表")
|
||||
@GetMapping("/getShopList")
|
||||
@@ -152,4 +157,17 @@ public class PCShopController {
|
||||
@RequestParam("subStage")Integer subStage) {
|
||||
return ResponseResult.success(shopService.getSubStageHandle(shopId,subStage));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @Auther: wangshuo
|
||||
* @Date: 2025/5/23
|
||||
* @description:不是对外回调接口,针对于已经在oa走完数据的,我们手动调用接口批量修改数据!!!只做云流水别的别用!!!
|
||||
*/
|
||||
@ApiOperation("批量修改门店云流水开通状态")
|
||||
@PostMapping("/batchStatusRefreshYls")
|
||||
public ApiResponse<Boolean> batchStatusRefreshYls(@RequestBody @Validated BatchStatusRefreshDTO batchStatusRefreshDTO) {
|
||||
return ApiResponse.success(openApiService.batchStatusRefreshYls(batchStatusRefreshDTO));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user