分页查询Ecu入库记录修改接口请求为post。

This commit is contained in:
小朱 2025-05-23 17:15:01 +08:00
parent 1d93bece13
commit fcc8c54c10

View File

@ -92,7 +92,7 @@ public class EbikeComponentController {
* @param reqEbikeEcuEnterRecordsDto 分页查询条件
* @return 分页对象
*/
@GetMapping("/ecuList")
@PostMapping("/ecuList")
public JsonResult<?> ecuList(@RequestBody ReqEbikeEcuEnterRecordsDto reqEbikeEcuEnterRecordsDto) {
Page<EbikeEcuEnterRecords> pageRecords = ebikeComponentService.getPageRecords(reqEbikeEcuEnterRecordsDto);
return JsonResult.success(pageRecords);