| | |
| | | package com.ruoyi.sy.mapper; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.ruoyi.sy.domain.ArdTankWall; |
| | | |
| | | /** |
| | | * 电磁锁电子围栏Mapper接口 |
| | | * |
| | | * @author ard |
| | | * @date 2024-07-01 |
| | | * @date 2024-07-22 |
| | | */ |
| | | public interface ArdTankWallMapper |
| | | { |
| | |
| | | public int deleteArdTankWallByIds(String[] ids); |
| | | |
| | | public List<ArdTankWall> getAllArdTankWall(); |
| | | |
| | | public List<Map<String,String>> getArdTankWallByLockId(String id); |
| | | |
| | | public Long selectArdTankWallTotal(String wallName); |
| | | |
| | | public List<ArdTankWall> getDistinctArdTankWallByCarId(String carId); |
| | | |
| | | public List<ArdTankWall> getArdTankWallProcessByLockId(String lockId); |
| | | } |