|  |  | 
 |  |  | package com.ruoyi.app.patrolplan.mapper; | 
 |  |  |  | 
 |  |  | import java.util.List; | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
 |  |  | import com.ruoyi.app.patrolplan.domain.ArdAppPatrolpoint; | 
 |  |  | import org.apache.ibatis.annotations.Param; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * app巡检计划点位Mapper接口 | 
 |  |  | 
 |  |  |  * @author ard | 
 |  |  |  * @date 2023-08-02 | 
 |  |  |  */ | 
 |  |  | public interface ArdAppPatrolpointMapper  | 
 |  |  | public interface ArdAppPatrolpointMapper extends BaseMapper<ArdAppPatrolpoint> | 
 |  |  | { | 
 |  |  |     /** | 
 |  |  |      * 查询app巡检计划点位 | 
 |  |  | 
 |  |  |     public int updateArdAppPatrolpoint(ArdAppPatrolpoint ardAppPatrolpoint); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 删除app巡检计划点位 | 
 |  |  |      * 级联删除app巡检计划点位 | 
 |  |  |      *  | 
 |  |  |      * @param id app巡检计划点位主键 | 
 |  |  |      * @return 结果 | 
 |  |  | 
 |  |  |     public int deleteArdAppPatrolpointById(String id); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 批量删除app巡检计划点位 | 
 |  |  |      *  | 
 |  |  |      * @param ids 需要删除的数据主键集合 | 
 |  |  |      * 批量新增app巡检计划点位 | 
 |  |  |      * | 
 |  |  |      * @param ardAppPatrolpoint app巡检计划点位 | 
 |  |  |      * @return 结果 | 
 |  |  |      */ | 
 |  |  |     public int deleteArdAppPatrolpointByIds(String[] ids); | 
 |  |  |     public int insertArdAppPatrolpointList(@Param("ardAppPatrolpointList")List<ArdAppPatrolpoint> ardAppPatrolpointList); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 根据巡检主键删除app巡检计划点位 | 
 |  |  |      * | 
 |  |  |      */ | 
 |  |  |     public int deleteArdAppPatrolpointByPlanId(String id); | 
 |  |  | } |