18 lines
564 B
C#
18 lines
564 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Application.Domain.Services
|
|
{
|
|
public interface IGameBadgeService
|
|
{
|
|
#region unit_user_badge
|
|
Task<int> GetUserShowBadgeCount(string userId);
|
|
Task<int> GetUserShowBadgeOnCount(string userId);
|
|
Task<bool> UpdateUserBadgeShow(string ubId, int show);
|
|
Task<unit_user_badge> GetUserBadegInfo(string ubId);
|
|
Task<List<unit_user_badge>> GetUserBadgeList(string userId, int page, int limit, RefAsync<int> total);
|
|
#endregion
|
|
}
|
|
}
|