DrawLotsGroupJudgesService.java 1.35 KB
package com.subsidy.service;

import com.baomidou.mybatisplus.core.metadata.IPage;
import com.subsidy.dto.group.JudgeScoreScreenDTO;
import com.subsidy.dto.group.MatchJudgesDTO;
import com.subsidy.dto.judge.AddJudgeDTO;
import com.subsidy.model.DrawLotGroupDictDO;
import com.subsidy.model.DrawLotsGroupJudgesDO;
import com.baomidou.mybatisplus.extension.service.IService;
import com.subsidy.model.DrawLotsScenesDO;
import com.subsidy.vo.group.JudgeScoreScreenVO;
import com.subsidy.vo.group.MatchJudgesVO;
import com.subsidy.vo.group.SelectJudgesVO;

import java.util.List;

/**
 * <p>
 * 赛组评委表 服务类
 * </p>
 *
 * @author Tuyp
 * @since 2025-12-10
 */
public interface DrawLotsGroupJudgesService extends IService<DrawLotsGroupJudgesDO> {

    IPage<MatchJudgesVO> matchJudges(MatchJudgesDTO matchJudgesDTO);

    IPage<SelectJudgesVO> selectJudges(MatchJudgesDTO matchJudgesDTO);

    String removeJudge(DrawLotsGroupJudgesDO drawLotsGroupJudgesDO);

    String updateJudge(AddJudgeDTO addJudgeDTO);

    String addJudge(AddJudgeDTO addJudgeDTO);

    String assignJudge(AddJudgeDTO addJudgeDTO);

    List<JudgeScoreScreenVO> judgeScoreScreen(JudgeScoreScreenDTO judgeScoreScreenDTO);

    List<DrawLotsScenesDO> judgeScenes(DrawLotsGroupJudgesDO drawLotsGroupJudgesDO);

    List<DrawLotGroupDictDO> judgeGroups(DrawLotsGroupJudgesDO drawLotsGroupJudgesDO);
}