puzhibing
2022-08-22 1421f8e9c308c4741cb396309035009393b5b036
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.stylefeng.guns.modular.system.dao;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.baomidou.mybatisplus.plugins.Page;
import com.stylefeng.guns.modular.system.model.TDriverTeam;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * 司机车队表mapper
 * @author yxh
 * @date 2021/4/12 13:53
 */
public interface TDriverTeamMapper extends BaseMapper<TDriverTeam> {
 
    List<Map<String, Object>> findPage(@Param("page") Page<Map<String, Object>> page, @Param("teamName") String teamName);
 
 
    TDriverTeam findByTeamName(@Param("teamName") String teamName);
 
    List<TDriverTeam> findAllList();
}