puzhibing
2023-06-13 7860e5cb6db60aeb82c640651998f8294635df5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.dsh.course.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.dsh.guns.modular.system.model.DriverPunish;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
public interface DriverPunishMapper extends BaseMapper<DriverPunish> {
 
 
    List<DriverPunish> queryAllPunish(@Param("driverId") Integer driverId);
 
    List<Map<String, Object>> getCanSelectCarList(@Param("page") Page<Map<String, Object>> page, @Param("roleType") Integer roleType, @Param("objectId") Integer objectId, @Param("carIdStr") Object o, @Param("carLicensePlate") String carLicensePlate, @Param("brandName") String brandName, @Param("modelName") String modelName, @Param("color") String color, @Param("serverStr") String serverStr,@Param("ids")String ids);
 
 
 
 
}