Newer
Older
huludao / src / main / java / com / newfiber / api / pc / dao / RiverManage / ProblemLongTermExpMapper.java
@新烽开发者 新烽开发者 on 22 Jul 508 bytes init
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);
}