| | |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import org.springframework.ui.Model; |
| | | |
| | | import java.io.File; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | |
| | | /** |
| | | * 聚合ocr识别 |
| | | * @param imgUrl |
| | | * @param file |
| | | * @return |
| | | */ |
| | | JSONObject ocr(String imgUrl); |
| | | JSONObject ocr(File file); |
| | | |
| | | /** |
| | | * 新增修改处理数据 |
| | |
| | | * @param tDriverId |
| | | * @param model |
| | | */ |
| | | void driverCommissionDetail(Integer tDriverId, Model model); |
| | | void driverCommissionDetail(Integer tDriverId,Integer levelFlag, Model model); |
| | | |
| | | /** |
| | | * 统计司机数 |
| | | * @param agentId |
| | | * @param model |
| | | */ |
| | | void getDataStatistics(Integer agentId, Model model); |
| | | void getDataStatistics(Integer agentId, Model model, Map<String, Object> map); |
| | | |
| | | /** |
| | | * 统计司机数 |
| | | * @param ids |
| | | * @param model |
| | | * @param map |
| | | */ |
| | | void getDataStatisticsByIds(List<Integer> ids, Model model, Map<String, Object> map); |
| | | } |