using Znyc.CloudCar.Configuration; namespace Znyc.CloudCar.IServices.Currency { /// /// 用户云币记录服务 /// public interface ICurrencyRecordService { /// /// 是否获取过手机号 /// /// 云币来源类型 /// 产品id /// Task IsGetPhone(GlobalEnumVars.CurrencyType operatingType, long id); /// /// 是否存在云币记录 /// /// Task IsExistCurrencyRecord(long userId, int operatingType); } }