2025-10-17 11:28:14 +08:00
|
|
|
package com.cdzy.operations.controller;
|
|
|
|
|
|
2025-10-21 09:36:31 +08:00
|
|
|
import com.cdzy.common.model.response.JsonResult;
|
|
|
|
|
import com.cdzy.operations.model.entity.EbikeBikeInfo;
|
|
|
|
|
import com.cdzy.operations.service.EbikeBikeInfoService;
|
|
|
|
|
import jakarta.annotation.Resource;
|
|
|
|
|
import org.springframework.validation.annotation.Validated;
|
2025-10-17 11:28:14 +08:00
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
/**
|
2025-10-21 09:36:31 +08:00
|
|
|
* 车辆基本信息 控制层。
|
2025-10-17 11:28:14 +08:00
|
|
|
*
|
|
|
|
|
* @author attiya
|
|
|
|
|
* @since 2025-10-17
|
|
|
|
|
*/
|
2025-10-21 09:36:31 +08:00
|
|
|
@Validated
|
2025-10-17 11:28:14 +08:00
|
|
|
@RestController
|
|
|
|
|
@RequestMapping("/ebikeBikeInfo")
|
|
|
|
|
public class EbikeBikeInfoController {
|
|
|
|
|
|
2025-10-21 09:36:31 +08:00
|
|
|
@Resource
|
2025-10-17 11:28:14 +08:00
|
|
|
private EbikeBikeInfoService ebikeBikeInfoService;
|
|
|
|
|
|
2025-10-21 09:36:31 +08:00
|
|
|
@PostMapping("bind")
|
|
|
|
|
public JsonResult<?> bind(@Validated @RequestBody EbikeBikeInfo ebikeBikeInfo) {
|
|
|
|
|
return JsonResult.success();
|
2025-10-17 11:28:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|