DrawLotsGroupJudgesService.java
1.35 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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);
}