增加称号跟徽章接口
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
@@ -2,5 +2,9 @@
|
||||
|
||||
public interface IGameMaxNameService
|
||||
{
|
||||
|
||||
#region unit_user_maxname
|
||||
Task<bool> UpdateUserMaxname(unit_user_maxname name);
|
||||
Task<unit_user_maxname> GetUserMaxnameInfo(string umnId);
|
||||
Task<List<unit_user_maxname>> GetUserMaxnameList(string userId, int page, int limit, RefAsync<int> total);
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user