| | |
| | | package com.stylefeng.guns.modular.system.service; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.baomidou.mybatisplus.mapper.EntityWrapper; |
| | | import com.stylefeng.guns.modular.system.controller.resp.TDriverResp; |
| | | import com.stylefeng.guns.modular.system.model.TDriver; |
| | |
| | | void auditPage(Integer id, Model model); |
| | | |
| | | /** |
| | | * 跳转详情页面 |
| | | * @param tDriverId |
| | | * @param model |
| | | * 聚合ocr识别 |
| | | * @param imgUrl |
| | | * @return |
| | | */ |
| | | void detail(Integer tDriverId, Model model); |
| | | JSONObject ocr(String imgUrl); |
| | | |
| | | /** |
| | | * 新增修改处理数据 |
| | | * @param tDriver |
| | | */ |
| | | void addOrUpdate(TDriver tDriver); |
| | | |
| | | /** |
| | | * 查询佣金列表 |
| | | * @param name |
| | | * @param phone |
| | | * @param status |
| | | * @return |
| | | */ |
| | | EntityWrapper<TDriver> getCommissionPageList(String name, String phone, Integer status); |
| | | |
| | | } |