| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.app.patrolplan.domain.ArdAppPatrolpoint; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * app巡检计划点位Mapper接口 |
| | |
| | | */ |
| | | public int deleteArdAppPatrolpointById(String id); |
| | | |
| | | /** |
| | | * 批量新增app巡检计划点位 |
| | | * |
| | | * @param ardAppPatrolpoint app巡检计划点位 |
| | | * @return 结果 |
| | | */ |
| | | public int insertArdAppPatrolpointList(@Param("ardAppPatrolpointList")List<ArdAppPatrolpoint> ardAppPatrolpointList); |
| | | |
| | | /** |
| | | * 根据巡检主键删除app巡检计划点位 |
| | | * |
| | | */ |
| | | public int deleteArdAppPatrolpointByPlanId(String id); |
| | | } |