平台建店 fix

This commit is contained in:
shuo.wang
2024-10-11 16:20:21 +08:00
parent 5389367022
commit 7fb971a804
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ public class MiniPlatformBuildController {
@ApiOperation("根据type获取平台建店详情:1-抖音2-快手3-美团团购4-饿了么5-美团外卖")
@GetMapping("/get")
public ResponseResult<PlatformBuildResponse> get(@RequestParam("shopId") Long shopId,@RequestParam("type") Integer type) {
return ResponseResult.success(platformBuildService.get(shopId, PlatformBuildEnum.DOU_YIN.getCode()));
return ResponseResult.success(platformBuildService.get(shopId, type));
}
@ApiOperation("根据type 提交或修改 平台建店详情:1-抖音2-快手3-美团团购4-饿了么5-美团外卖")