| | |
| | | package com.ruoyi.tms.service; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.tms.domain.TmsTrip; |
| | |
| | | public List<TmsTrip> tmsTripList(Integer dispatchId); |
| | | |
| | | /** |
| | | * 分页查询行程历史(按时间倒序,无 dispatchId 时查全部) |
| | | */ |
| | | public Map<String, Object> tmsTripListPage(Integer dispatchId, Integer pageNum, Integer pageSize); |
| | | |
| | | /** |
| | | * 查询行程列表 异步 导出 |
| | | * |
| | | * @param tmsTrip 行程 |
| | |
| | | * @param tmsTrip 行程 |
| | | * @return 结果 |
| | | */ |
| | | public int insertTmsTrip(TmsTrip tmsTrip); |
| | | public int insertTmsTrip(TmsTrip tmsTrip) throws Exception; |
| | | public AjaxResult submitDropHook(TmsTrip tmsTrip); |
| | | public AjaxResult submitPickHook(TmsTrip tmsTrip); |
| | | /** |