package com.newfiber.api.pc.dao.RiverManage; import com.baomidou.mybatisplus.mapper.BaseMapper; import com.newfiber.api.pc.model.River.PatrolManageDic; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; /** * patrolManageDic model层 * * @author luzhan */ @Repository public interface PatrolManageDicMapper extends BaseMapper<PatrolManageDic> { List<PatrolManageDic> getListByPatrolType(@Param("patrolType") Integer patrolType); /** * 查询任务状态 * @return */ List<PatrolManageDic> getListByPatrolState(); }