namespace Application.Domain; public interface IGameMonsterService { #region 地图怪物 Task> GetMonsterDataByMap(string mapId); Task CreateMonsterToMap(string userId, string mapId, string areaCode, string monsterId, int count = 1, int time = 0, string par = ""); Task> GetMapMonster(string userId, string mapId, string teamId); #endregion }