| | |
| | | package com.stylefeng.guns.modular.system.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.stylefeng.guns.modular.system.model.TReassign; |
| | | import com.stylefeng.guns.modular.system.dao.TReassignMapper; |
| | | import com.stylefeng.guns.modular.system.service.ITReassignService; |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import com.stylefeng.guns.modular.system.dao.TReassignMapper; |
| | | import com.stylefeng.guns.modular.system.model.TReassign; |
| | | import com.stylefeng.guns.modular.system.service.ITReassignService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.Date; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> getCanSelectPrivateCarDriverList(Page<Map<String, Object>> page, Integer companyId, Integer driverId, String name, String phone) { |
| | | return this.baseMapper.getCanSelectPrivateCarDriverList(page, companyId, driverId, name, phone); |
| | | public List<Map<String, Object>> getCanSelectPrivateCarDriverList(Page<Map<String, Object>> page, Integer serverCarModelId, Integer driverId, String name, String phone) { |
| | | return this.baseMapper.getCanSelectPrivateCarDriverList(page, serverCarModelId, driverId, name, phone); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> getCanSelectSmallDriverList(Page<Map<String, Object>> page, Integer companyId, Integer driverId, Integer type, String name, String phone) { |
| | | return this.baseMapper.getCanSelectSmallDriverList(page, companyId, driverId, type, name, phone); |
| | | public List<Map<String, Object>> getCanSelectSmallDriverList(Page<Map<String, Object>> page, Integer serverCarModelId, Integer driverId, Integer type, String name, String phone) { |
| | | return this.baseMapper.getCanSelectSmallDriverList(page, serverCarModelId, driverId, type, name, phone); |
| | | } |
| | | |
| | | |