1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package com.ruoyi.system.service;
|
| import com.ruoyi.common.core.domain.AjaxResult;
| import com.ruoyi.system.domain.VehicleSyncDTO;
|
| import java.util.List;
|
| /**
| * 车辆同步服务接口
| *
| * @author ruoyi
| * @date 2025-10-20
| */
| public interface IVehicleSyncService
| {
| /**
| * 同步车辆数据到MySQL
| *
| * @param vehicles 从SQL Server查询的车辆列表
| * @return 同步结果
| */
| AjaxResult syncVehicles(List<VehicleSyncDTO> vehicles);
|
|
| }
|
|