package com.artfess.rescue.patrol.dao;

import com.artfess.rescue.patrol.model.BizInspectionPlanDetails;
import com.artfess.rescue.patrol.vo.PlanPatrolVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
 * 巡检计划详情表：配置巡检任务中的巡查点位 Mapper 接口
 *
 * @company 阿特菲斯信息技术有限公司
 * @author 系统管理员
 * @since 2024-08-02
 */
public interface BizInspectionPlanDetailsDao extends BaseMapper<BizInspectionPlanDetails> {

    List<PlanPatrolVO> findByPlanId(@Param("planId") String planId);


}
