package com.ruoyi.system.mapper; import java.util.List; import com.ruoyi.system.domain.RouteWaypoints; /** * 航线具体航点明细Mapper接口 * * @author ruoyi * @date 2026-01-21 */ public interface RouteWaypointsMapper { /** * 查询航线具体航点明细 * * @param id 航线具体航点明细主键 * @return 航线具体航点明细 */ public RouteWaypoints selectRouteWaypointsById(Long id); /** * 查询航线具体航点明细列表 * * @param routeWaypoints 航线具体航点明细 * @return 航线具体航点明细集合 */ public List selectRouteWaypointsList(RouteWaypoints routeWaypoints); /** 查询指定航线下最大的序号 */ public Integer selectMaxSeqByRouteId(Long routeId); /** * 新增航线具体航点明细 * * @param routeWaypoints 航线具体航点明细 * @return 结果 */ public int insertRouteWaypoints(RouteWaypoints routeWaypoints); /** * 修改航线具体航点明细 * * @param routeWaypoints 航线具体航点明细 * @return 结果 */ public int updateRouteWaypoints(RouteWaypoints routeWaypoints); /** * 删除航线具体航点明细 * * @param id 航线具体航点明细主键 * @return 结果 */ public int deleteRouteWaypointsById(Long id); /** * 删除航线具体航点明细 * * @param routeId 航线主键 * @return 结果 */ public int deleteRouteWaypointsByRouteId(Long routeId); /** * 批量删除航线具体航点明细 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteRouteWaypointsByIds(Long[] ids); }