| | |
| | | package com.ruoyi.sy.mapper; |
| | | |
| | | import java.util.List; |
| | | import java.util.Set; |
| | | |
| | | import com.ruoyi.sy.domain.ArdTankLock; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | public List<ArdTankLock> getLockByCarId(String carId); |
| | | |
| | | public int deleteLockByCarId(String carId); |
| | | |
| | | public int deleteArdTankLockByIdSet(@Param("idSet") Set<String> idSet); |
| | | |
| | | public Long selectArdTankLockTotal(); |
| | | |
| | | public List<ArdTankLock> getLockByCarIdList(@Param("carIdList") List<String> carIdList); |
| | | |
| | | public Long selectArdTankLockAllTotal(); |
| | | |
| | | public Long selectArdTankLockTotalByCarIdList(@Param("carIdList") List<String> carIdList); |
| | | |
| | | public int deleteArdTankLockAndWallByCarIds(@Param("carIds") List<String> carIds); |
| | | |
| | | public String getIdByLockNum(String lockNum); |
| | | |
| | | public List<ArdTankLock> selectArdTankLockWithPassword(); |
| | | |
| | | public List<ArdTankLock> getArdTankLockAllWithState(); |
| | | |
| | | public Long getArdTankLockCount(); |
| | | |
| | | public List<ArdTankLock> getArdTankLockWithStateByCarId(String carId); |
| | | |
| | | public int updateLockEnableByCarId(@Param("carId")String carId, @Param("enable") String enable); |
| | | |
| | | public List<ArdTankLock> selectArdTankLockWithWallAndStateByCarId(String carId); |
| | | } |