Blame view

ProjectJudgeDAO.java 859 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.zhongzhi.dao;

import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.zhongzhi.model.ProjectJudgeDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.zhongzhi.vo.judge.ProjectJudgePageVO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;

/**
 * <p>
 * 项目评审员 Mapper 接口
 * </p>
 *
 * @author DengMin
 * @since 2021-05-28
 */
@Repository
public interface ProjectJudgeDAO extends BaseMapper<ProjectJudgeDO> {

    IPage<ProjectJudgePageVO> getProjectJudgePage(Page page, String username, Integer status);

    IPage<ProjectJudgePageVO> projectJudgesAssigned(Page page, @Param("matchId") Long matchId, @Param("projectGroup") String projectGroup, @Param("projectSchedule") String projectSchedule);
}