Blame view

ProjectReviewDAO.java 631 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 26
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);
}