| | |
| | | import com.supersavedriving.driver.modular.system.util.ResultUtil; |
| | | import com.supersavedriving.driver.modular.system.warpper.*; |
| | | |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil<List<String>> queryDriverPosition(Integer uid) throws Exception; |
| | | ResultUtil<HashMap<String, Object>> queryDriverPosition(Integer uid) throws Exception; |
| | | |
| | | |
| | | /** |
| | |
| | | ResultUtil balanceRecharge(Integer uid, Double amount) throws Exception; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 司机账户余额充值 |
| | | * @param driverId |
| | | * @param amount |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil balanceRecharge1(Integer driverId, String jscode, Double amount) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 支付回调通知处理 |
| | | * @param out_trade_no |
| | | * @throws Exception |
| | | */ |
| | | void balanceRechargeCallback(String out_trade_no, String transaction_id) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 修改密码 |
| | | * @param uid |
| | | * @param oldPass |
| | | * @param newPass |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil updatePassword(Integer uid, String oldPass, String newPass) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 设置密码 |
| | | * @param uid |
| | | * @param password |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil recoverPassword(Integer uid, String password) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 打开下单二维码 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | ResultUtil openOrderQRCode(Integer uid) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 关闭下单二维码 |
| | | * @param uid |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil closeOrderQRCode(Integer uid) throws Exception; |
| | | |
| | | |
| | | |
| | | ResultUtil<HashMap<String, Object>> queryDriverOrderNum(String time,Integer uid); |
| | | |
| | | ResultUtil microenterprise(Integer uid, String name, String number, String phone, String notifyUrl) throws Exception; |
| | | } |