Blame view

CollegesDictMapper.java 567 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
package com.subsidy.mapper;

import com.subsidy.model.CollegesDictDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.subsidy.model.ProjectDO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * 院校字典表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2025-01-08
 */
@Repository
public interface CollegesDictMapper extends BaseMapper<CollegesDictDO> {

    List<ProjectDO> getPreliminaryProjectList(Long matchId, String projectSchedule,Long collegeId);


}