DrawLotsGroupJudgesMapper.java
1.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package com.zhongzhi.dao;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.zhongzhi.model.DrawLotGroupDictDO;
import com.zhongzhi.model.DrawLotsGroupJudgesDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.zhongzhi.vo.drawlots.*;
import com.zhongzhi.vo.judge.JudgeInfoVO;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* <p>
* 赛组评委表 Mapper 接口
* </p>
*
* @author DengMin
* @since 2025-06-19
*/
@Repository
public interface DrawLotsGroupJudgesMapper extends BaseMapper<DrawLotsGroupJudgesDO> {
IPage<MatchJudgesVO> matchJudges(IPage page,Long sceneId, String userName, String expectorType, String roleType);
/**
* 选择评委
*/
IPage<SelectJudgesVO> selectJudges(IPage page,Long sceneId,String userName);
/**
* 某组别已经存在的编码
*/
List<Integer> allNum(Long groupId);
/**
* 某组别已经随机到的编码
*/
List<Integer> existNum(Long groupId);
/**
* 当前组的组长
*/
Integer currentGroupLeaderCnt(Long groupId);
/**
* 评委信息
*/
List<DrawJudgeInfoVO> drawJudgeInfo(Long groupId);
/**
* 没有组长的组
*/
List<DrawLotGroupDictDO> noLeaderGroup(Long sceneId);
/**
* 某个类别(行业专家,教育专家)没有满的组员
*/
List<DrawLotGroupDictDO> noMemberGroup(Long sceneId,String teachType);
LoginVO login(String name);
List<ScoreScreenVO> judgeScoreScreen(Long groupId, Integer groupNum);
JudgeFullInfoVO judgeInfo(Long groupId,Integer groupNum);
}