BaseExpertMapper.java 878 B

1234567891011121314151617181920212223242526
  1. package com.ozs.base.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.ozs.base.domain.BaseExpert;
  4. import com.ozs.base.domain.BaseUnitInformation;
  5. import com.ozs.base.domain.vo.BaseExpertVo;
  6. import com.ozs.pm.doman.PmDemandExpertRef;
  7. import org.apache.ibatis.annotations.Mapper;
  8. import org.apache.ibatis.annotations.Param;
  9. import java.util.List;
  10. import java.util.Map;
  11. @Mapper
  12. public interface BaseExpertMapper extends BaseMapper<BaseExpert> {
  13. int insertExpert(BaseExpertVo baseExpertVo);
  14. List<BaseUnitInformation> selectByUnitInformation(@Param("unitInformation") String unitInformation);
  15. Integer insertBaseUnitInformation(BaseUnitInformation baseUnitInformation);
  16. Map<String, String> getExpertNameList(@Param("expertList") List<Long> expertList);
  17. List<PmDemandExpertRef> getExpertIdList(@Param("demandId") Long demandId);
  18. }