| | |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.stylefeng.guns.modular.taxi.model.PaymentRecord; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | public interface IPaymentRecordService extends IService<PaymentRecord> { |
| | | |
| | | |
| | |
| | | */ |
| | | PaymentRecord query(Integer category, Integer userId, Integer type, Integer orderId, Integer orderType, |
| | | Integer payType, Integer state) throws Exception; |
| | | |
| | | /** |
| | | * 查询用户充值数据 |
| | | * @param uid |
| | | * @param pageNum |
| | | * @param size |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> queryRechargeRecord(Integer uid, Integer pageNum, Integer size); |
| | | |
| | | /** |
| | | * 查询用户充值金额汇总 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | Double queryRechargeMoneySum(Integer uid); |
| | | } |