整车绑定

This commit is contained in:
attiya 2025-10-21 09:51:51 +08:00
parent 5eb1d5e49d
commit 2dbb74c2e4

View File

@ -24,6 +24,11 @@ public class EbikeBikeInfoController {
@Resource @Resource
private EbikeBikeInfoService ebikeBikeInfoService; private EbikeBikeInfoService ebikeBikeInfoService;
/**
* 整车绑定
* @param bindVo 绑定信息
* @return 绑定结果
*/
@PostMapping("bind") @PostMapping("bind")
public JsonResult<?> bind(@Validated @RequestBody EbikeBikeBindVo bindVo) { public JsonResult<?> bind(@Validated @RequestBody EbikeBikeBindVo bindVo) {
ebikeBikeInfoService.bind(bindVo); ebikeBikeInfoService.bind(bindVo);