package com.newfiber.api.pc.dao.RiverManage; import com.baomidou.mybatisplus.mapper.BaseMapper; import com.newfiber.api.pc.model.River.PatrolManageProcess; import com.newfiber.api.pc.model.River.PatrolManageProcessDto; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; /** * patrolManageProcess model层 * * @author luzhan */ @Repository public interface PatrolManageProcessMapper extends BaseMapper<PatrolManageProcess> { /** * 流程数组 * @param problemId * @return */ List<PatrolManageProcessDto> selectListByProblemId(@Param("problemId") Long problemId); }