using System.Threading.Tasks; using Znyc.Cloudcar.Admin.Commons.IServices; using Znyc.Cloudcar.Admin.Security.Dtos; using Znyc.Cloudcar.Admin.Security.Entitys; namespace Znyc.Cloudcar.Admin.Security.IServices { /// /// 云币服务 /// public interface ICurrencyService : IService { /// /// 实名认证加积分 /// /// /// /// Task AddCurrencyForRealName(long userId, long createdUserId); /// /// 求职置顶退云币 /// /// /// 4 /// /// Task TopReturnForApplyJob(long userId, long applyJobId, long createdUserId); /// /// 招聘置顶退云币 /// /// /// /// /// Task TopReturnForCloudcar(long userId, long CloudcarId, long createdUserId); } }