feat:云流水

This commit is contained in:
苏竹红
2025-04-16 19:34:48 +08:00
parent ed8796d60c
commit 5086c675ab

View File

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