| | |
| | | package com.stylefeng.guns.modular.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.stylefeng.guns.modular.system.model.TOrderTape; |
| | | import com.stylefeng.guns.modular.system.model.TPhone; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface ITOrderTapeService extends IService<TOrderTape> { |
| | | |
| | | /** |
| | | * 行程录音分页列表 |
| | | * @param page |
| | | * @param beginTime |
| | | * @param endTime |
| | | * @param fileName |
| | | * @param orderNum |
| | | * @param state |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getOrderTapeList(Page<Map<String, Object>> page, String beginTime, String endTime, String fileName, String orderNum, String state); |
| | | |
| | | } |