| | |
| | | package com.ruoyi.system.mapper; |
| | | |
| | | import java.util.List; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import com.ruoyi.system.domain.SysTaskVehicle; |
| | | |
| | | /** |
| | |
| | | * @param vehicleId 车辆ID |
| | | * @return 结果 |
| | | */ |
| | | public int deleteSysTaskVehicleByTaskIdAndVehicleId(Long taskId, Long vehicleId); |
| | | public int deleteSysTaskVehicleByTaskIdAndVehicleId(@Param("taskId") Long taskId, @Param("vehicleId") Long vehicleId); |
| | | |
| | | /** |
| | | * 检查任务车辆关联是否存在 |
| | |
| | | * @param vehicleId 车辆ID |
| | | * @return 结果 |
| | | */ |
| | | public int checkTaskVehicleExists(Long taskId, Long vehicleId); |
| | | public int checkTaskVehicleExists(@Param("taskId") Long taskId, @Param("vehicleId") Long vehicleId); |
| | | |
| | | /** |
| | | * 批量新增任务车辆关联 |