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.
24 lines
719 B
24 lines
719 B
using Znyc.CloudCar.Configuration;
|
|
|
|
namespace Znyc.CloudCar.IServices.Currency
|
|
{
|
|
/// <summary>
|
|
/// 用户云币记录服务
|
|
/// </summary>
|
|
public interface ICurrencyRecordService
|
|
{
|
|
/// <summary>
|
|
/// 是否获取过手机号
|
|
/// </summary>
|
|
/// <param name="operatingType">云币来源类型</param>
|
|
/// <param name="id">产品id</param>
|
|
/// <returns></returns>
|
|
Task<bool> IsGetPhone(GlobalEnumVars.CurrencyType operatingType, long id);
|
|
|
|
/// <summary>
|
|
/// 是否存在云币记录
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<bool> IsExistCurrencyRecord(long userId, int operatingType);
|
|
}
|
|
}
|