package com.ruoyi.sy.mapper;
|
|
import java.util.List;
|
import com.ruoyi.sy.domain.ArdTankWallLock;
|
|
/**
|
* 电子围栏电磁锁Mapper接口
|
*
|
* @author ard
|
* @date 2024-06-29
|
*/
|
public interface ArdTankWallLockMapper
|
{
|
/**
|
* 查询电子围栏电磁锁
|
*
|
* @param processType 电子围栏电磁锁主键
|
* @return 电子围栏电磁锁
|
*/
|
public ArdTankWallLock selectArdTankWallLockByProcessType(String processType);
|
|
/**
|
* 查询电子围栏电磁锁列表
|
*
|
* @param ardTankWallLock 电子围栏电磁锁
|
* @return 电子围栏电磁锁集合
|
*/
|
public List<ArdTankWallLock> selectArdTankWallLockList(ArdTankWallLock ardTankWallLock);
|
|
/**
|
* 新增电子围栏电磁锁
|
*
|
* @param ardTankWallLock 电子围栏电磁锁
|
* @return 结果
|
*/
|
public int insertArdTankWallLock(ArdTankWallLock ardTankWallLock);
|
|
/**
|
* 修改电子围栏电磁锁
|
*
|
* @param ardTankWallLock 电子围栏电磁锁
|
* @return 结果
|
*/
|
public int updateArdTankWallLock(ArdTankWallLock ardTankWallLock);
|
|
/**
|
* 删除电子围栏电磁锁
|
*
|
* @param processType 电子围栏电磁锁主键
|
* @return 结果
|
*/
|
public int deleteArdTankWallLockByProcessType(String processType);
|
|
/**
|
* 批量删除电子围栏电磁锁
|
*
|
* @param processTypes 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteArdTankWallLockByProcessTypes(String[] processTypes);
|
|
public int deleteArdTankWallLockByLockId(String lockId);
|
|
public int deleteArdTankWallLockByWallId(String wallId);
|
}
|