package com.panzhihua.service_community.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.panzhihua.common.model.dtos.community.wallet.ComActWalletDetailDTO;
|
import com.panzhihua.common.model.dtos.community.wallet.PageComActWalletTradeDTO;
|
import com.panzhihua.common.model.vos.R;
|
import com.panzhihua.service_community.model.dos.ComActUserWalletDO;
|
|
/**
|
* @auther lyq
|
* @create 2021-06-25 10:35:11
|
* @describe 用户钱包表服务类
|
*/
|
public interface ComActUserWalletService extends IService<ComActUserWalletDO> {
|
|
/**
|
* 查询用户钱包信息
|
* @param walletDetailDTO 请求参数
|
* @return 用户钱包信息
|
*/
|
R getWallet(ComActWalletDetailDTO walletDetailDTO);
|
|
/**
|
* 查询用户绑定的社区收益排行榜
|
* @param walletTradeDTO 请求参数
|
* @return 社区收益排行榜
|
*/
|
R getWalletRanking(PageComActWalletTradeDTO walletTradeDTO);
|
|
}
|