You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
549 B
19 lines
549 B
using Znyc.CloudCar.Model.Entities;
|
|
|
|
namespace Znyc.CloudCar.IRepository.Currency
|
|
{
|
|
public interface ICurrencyRecordRepository : IRepositoryBase<CurrencyRecordEntity>
|
|
{
|
|
///// <summary>
|
|
///// 获取邀请排行榜
|
|
///// </summary>
|
|
///// <returns></returns>
|
|
//Task<List<InviteTopUser>> GetInviteTopAsync();
|
|
|
|
///// <summary>
|
|
///// 获取用户获取电话数据
|
|
///// </summary>
|
|
///// <returns></returns>
|
|
//Task<List<InviteTopUser>> GetCallPhoneAsync();
|
|
}
|
|
}
|