ProjectReviewDAO.java 631 Bytes
package com.zhongzhi.dao;

import com.zhongzhi.model.ProjectReviewDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.zhongzhi.vo.judge.ProjectReviewVO;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * 项目评审 Mapper 接口
 * </p>
 *
 * @author DengMin
 * @since 2021-05-18
 */
@Repository
public interface ProjectReviewDAO extends BaseMapper<ProjectReviewDO> {

    List<ProjectReviewVO> getList(String projectSchedule, Long projectId);

    Integer selectCountByMatchId(Long judgeId, Long matchId);

    Integer selectNotReviewCount(Long judgeId, Long matchId);
}