package com.newfiber.api.pc.dao.RiverManage; import com.baomidou.mybatisplus.mapper.BaseMapper; import com.newfiber.api.pc.model.River.ProblemLongTermExp; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; /** * problemLongTermExp model层 * * @author luzhan */ @Repository public interface ProblemLongTermExpMapper extends BaseMapper<ProblemLongTermExp> { List<ProblemLongTermExp> selectByIds(@Param("list") List<Long> list); }