| | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.sy.domain.ArdSyCar; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * 三一车辆Mapper接口 |
| | |
| | | * @author ard |
| | | * @date 2023-06-26 |
| | | */ |
| | | public interface ArdSyCarMapper |
| | | public interface ArdSyCarMapper extends BaseMapper<ArdSyCar> |
| | | { |
| | | /** |
| | | * 查询三一车辆 |
| | |
| | | */ |
| | | public List<ArdSyCar> selectArdSyCarByIds(String[] ids); |
| | | |
| | | // List<ArdSyCar> getArdSyCarWithRightByCarIdList(@Param("carIdList")List<String> carIdList); |
| | | |
| | | /** |
| | | * 根据车辆ID查询车辆列表 |
| | | * @param id |
| | |
| | | * 根据车辆id查询三一车辆及对应部门 |
| | | */ |
| | | public Map<String, Object> getArdSyCarAndDeptByCarId(String carId); |
| | | |
| | | public List<String> selectArdSyCarByDeptIds(@Param("deptIdList") List<Long> deptIdList); |
| | | |
| | | public ArdSyCar getArdSyTankCarByCarId(String carId); |
| | | |
| | | public long getCountByCarIdList(@Param("carIdList") List<String> carIdList); |
| | | |
| | | public List<ArdSyCar> getCarListByDeptIdList(@Param("deptIdList") List<Long> deptIdList); |
| | | |
| | | public List<ArdSyCar> selectArdSyCarAndTankLockByUserId(String userId); |
| | | |
| | | public List<ArdSyCar> selectByBrandAndType(@Param("carBrand")String carBrand,@Param("carType")String carType); |
| | | } |