package com.stylefeng.guns.modular.system.service;
|
|
import com.baomidou.mybatisplus.mapper.EntityWrapper;
|
import com.stylefeng.guns.modular.system.controller.resp.TDriverResp;
|
import com.stylefeng.guns.modular.system.model.TDriver;
|
import com.baomidou.mybatisplus.service.IService;
|
import org.springframework.ui.Model;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 司机基础信息 服务类
|
* </p>
|
*
|
* @author stylefeng
|
* @since 2023-02-20
|
*/
|
public interface ITDriverService extends IService<TDriver> {
|
|
/**
|
* 获取司机分页列表
|
* @param createTime
|
* @param phone
|
* @param status
|
* @return
|
*/
|
EntityWrapper<TDriver> getPageList(String createTime, String phone, Integer status);
|
|
/**
|
* 封装司机放回resp
|
* @param tDrivers
|
* @return
|
*/
|
List<TDriverResp> getTDriverResp(List<TDriver> tDrivers);
|
|
/**
|
* 跳转审核页面
|
* @param id
|
* @param model
|
*/
|
void auditPage(Integer id, Model model);
|
|
/**
|
* 跳转详情页面
|
* @param tDriverId
|
* @param model
|
*/
|
void detail(Integer tDriverId, Model model);
|
|
}
|