| | |
| | | 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; |
| | | |
| | | /** |
| | | * 电磁锁Mapper接口 |
| | |
| | | public int deleteArdTankLockByIds(String[] ids); |
| | | |
| | | public List<ArdTankLock> getAll(); |
| | | |
| | | public int insertArdTankLocks(@Param("ardTankLocks") List<ArdTankLock> ardTankLocks); |
| | | |
| | | 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(); |
| | | } |