Merge remote-tracking branch 'origin/cc_20250325_select' into cc_20250325_select

This commit is contained in:
shuo.wang
2025-04-16 21:07:04 +08:00
2 changed files with 6 additions and 5 deletions

View File

@@ -73,11 +73,6 @@ public class ShopAccountController {
return ResponseResult.success(accountService.accountEntryStatusChange(dto));
}
@ApiOperation("门店编码换云流水编码")
@PostMapping("/shopCodeToYlsCode")
public ResponseResult<String> shopCodeToYlsCode(@RequestParam(value = "shopId",required = true) Long shopId) {
return ResponseResult.success(accountService.shopCodeToYlsCode(shopId));
}
}

View File

@@ -74,4 +74,10 @@ public class MiniShopAccountController {
return ResponseResult.success(thirdXinGuanJiaService.getPassword(dto));
}
@ApiOperation("门店编码换云流水编码")
@GetMapping("/shopCodeToYlsCode")
public ResponseResult<String> shopCodeToYlsCode(@RequestParam(value = "shopId",required = true) Long shopId) {
return ResponseResult.success(accountService.shopCodeToYlsCode(shopId));
}
}