This commit is contained in:
Putoo
2026-07-17 18:12:08 +08:00
parent c80841880c
commit e4d39f3f2f
9 changed files with 223 additions and 26 deletions

View File

@@ -0,0 +1,11 @@
namespace Application.Domain;
public interface IGameEscortService
{
Task<List<game_escort>> GetEscortData();
Task<game_escort> GetEscortInfo(int esId);
Task<unit_user_escort> GetUserEscort(string userId);
Task<bool> ClearUserEscort(string userId);
Task<bool> UpdateUserEscort(string userId, int esId, string name);
Task<bool> UpdateUserEscort(unit_user_escort data);
}