12345678910111213141516171819 |
- package com.ozs.pm.mapper;
- import com.ozs.pm.doman.PmDemandExpertRef;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * 项目专家关联表(PmDemandExpertRef)è¡¨æ°æ®åºè®¿é®å±
- *
- * @author makejava
- * @since 2023-02-03 15:37:07
- */
- public interface PmDemandExpertRefMapper extends BaseMapper<PmDemandExpertRef> {
- List<Integer> selectByExpertId(@Param("expertId") Integer expertId);
- }
|