package com.ruoyi.device.noguidezone.mapper; import java.util.List; import com.ruoyi.device.noguidezone.domain.ArdCameraNoGuideZone; /** * 禁引可视域Mapper接口 * * @author ard * @date 2023-10-28 */ public interface ArdCameraNoGuideZoneMapper { /** * 查询禁引可视域 * * @param id 禁引可视域主键 * @return 禁引可视域 */ public ArdCameraNoGuideZone selectArdCameraNoGuideZoneById(String id); /** * 查询禁引可视域列表 * * @param ardCameraNoGuideZone 禁引可视域 * @return 禁引可视域集合 */ public List selectArdCameraNoGuideZoneList(ArdCameraNoGuideZone ardCameraNoGuideZone); /** * 新增禁引可视域 * * @param ardCameraNoGuideZone 禁引可视域 * @return 结果 */ public int insertArdCameraNoGuideZone(ArdCameraNoGuideZone ardCameraNoGuideZone); /** * 修改禁引可视域 * * @param ardCameraNoGuideZone 禁引可视域 * @return 结果 */ public int updateArdCameraNoGuideZone(ArdCameraNoGuideZone ardCameraNoGuideZone); /** * 删除禁引可视域 * * @param id 禁引可视域主键 * @return 结果 */ public int deleteArdCameraNoGuideZoneById(String id); /** * 批量删除禁引可视域 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteArdCameraNoGuideZoneByIds(String[] ids); }