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