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.
41 lines
1.3 KiB
41 lines
1.3 KiB
using System.Threading.Tasks;
|
|
using Znyc.Recruitment.Admin.Commons.IServices;
|
|
using Znyc.Recruitment.Admin.Security.Dtos;
|
|
using Znyc.Recruitment.Admin.Security.Entitys;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.IServices
|
|
{
|
|
/// <summary>
|
|
/// 云币服务
|
|
/// </summary>
|
|
public interface ICurrencyService : IService<CurrencyEntity, CurrencyOutputDto, long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 实名认证加积分
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <param name="createdUserId"></param>
|
|
/// <returns></returns>
|
|
Task<bool> AddCurrencyForRealName(long userId, long createdUserId);
|
|
|
|
|
|
/// <summary>
|
|
/// 求职置顶退云币
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <param name="applyJobId"></param>4
|
|
/// <param name="createdUserId"></param>
|
|
/// <returns></returns>
|
|
Task TopReturnForApplyJob(long userId, long applyJobId, long createdUserId);
|
|
|
|
/// <summary>
|
|
/// 招聘置顶退云币
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <param name="recruitmentId"></param>
|
|
/// <param name="createdUserId"></param>
|
|
/// <returns></returns>
|
|
Task TopReturnForRecruitment(long userId, long recruitmentId, long createdUserId);
|
|
}
|
|
}
|