hjl
2024-06-18 aaa3384609da2dfb7d6788a2a2b3d92a2bff0813
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
package com.ruoyi.admin.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.admin.entity.MasterWorker;
import com.ruoyi.admin.vo.MasterWorkerRankVO;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 师傅信息表 Mapper 接口
 * </p>
 *
 * @author hjl
 * @since 2024-05-29
 */
public interface MasterWorkerMapper extends BaseMapper<MasterWorker> {
 
    /**
     * 师傅接单排行
     *
     * @param workerIdList 师傅id集合
     * @return 排行信息
     */
    List<MasterWorkerRankVO> workerRanking(@Param("ids") List<Integer> workerIdList);
}