| | |
| | | package com.stylefeng.guns.modular.taxi.service; |
| | | |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.stylefeng.guns.modular.system.util.ResultUtil; |
| | | import com.stylefeng.guns.modular.taxi.model.TransactionDetails; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface ITransactionDetailsService extends IService<TransactionDetails> { |
| | | |
| | |
| | | */ |
| | | void saveData(Integer userId, String remark, Double money, Integer state, |
| | | Integer type, Integer userType, Integer orderType, Integer orderId) throws Exception; |
| | | |
| | | /** |
| | | * 查询用户充值记录 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | List<TransactionDetails> queryRechargeRecord(Integer uid); |
| | | |
| | | } |