This commit is contained in:
Putoo
2026-05-27 18:26:50 +08:00
parent 36a7575990
commit 0d5443ef36
28 changed files with 1043 additions and 25 deletions

View File

@@ -0,0 +1,9 @@
namespace Application.Domain;
public interface IGameStoreService
{
Task<List<game_city_npc_store>> GetStoreData(int npc, int area, int page, int limit,
RefAsync<int> total);
Task<game_city_npc_store> GetStoreInfo(string storeId);
}