This commit is contained in:
Putoo
2026-05-28 19:06:40 +08:00
parent 0d5443ef36
commit 69ae1e3174
39 changed files with 1742 additions and 31 deletions

View File

@@ -0,0 +1,8 @@
namespace Application.Domain;
public interface IGameMallService
{
Task<List<game_mall>> GetMallData(int area, string type, int page, int limit, RefAsync<int> total);
Task<game_mall> GetMallInfo(string mallId);
Task<bool> AddLog(game_mall mall, string userId, int count);
}