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);
|
}
|