| | |
| | | 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.TOrderTape; |
| | | import com.stylefeng.guns.modular.system.model.TPhone; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TOrderTapeMapper extends BaseMapper<TOrderTape> { |
| | | |
| | | /** |
| | | * 行程录音分页列表 |
| | | * @param page |
| | | * @param beginTime |
| | | * @param endTime |
| | | * @param fileName |
| | | * @param orderNum |
| | | * @param state |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getOrderTapeList(@Param("page") Page<Map<String, Object>> page, |
| | | @Param("beginTime")String beginTime, |
| | | @Param("endTime")String endTime, |
| | | @Param("fileName")String fileName, |
| | | @Param("orderNum")String orderNum, |
| | | @Param("state")String state); |
| | | } |