hjl
2024-07-01 03c6572c7918beaa20365e69c9694a11f0d9948a
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
package com.ruoyi.admin.service;
 
import com.ruoyi.admin.entity.MasterWorker;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.admin.vo.MasterWorkerRankVO;
 
import java.util.List;
 
/**
 * <p>
 * 师傅信息表 服务类
 * </p>
 *
 * @author hjl
 * @since 2024-05-29
 */
public interface MasterWorkerService extends IService<MasterWorker> {
 
    /**
     * 师傅接单排行
     *
     * @param cityList 城市集合
     * @return 排行榜
     */
    List<MasterWorkerRankVO> workerRanking(List<String> cityList);
}