From 06dccabf0bc733c1bfa05e209807dc36b6aa3344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=ED=8C=90=EB=8F=8C?= Date: Sun, 25 Feb 2024 21:40:54 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EB=B2=84?= =?UTF-8?q?=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Server/Service/Login.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Server/Service/Login.cs b/Server/Service/Login.cs index 6d67e51..2d78f59 100644 --- a/Server/Service/Login.cs +++ b/Server/Service/Login.cs @@ -27,8 +27,9 @@ namespace Server.Service if (user != null) { - deckUnitInfoList = Statics.deckUnitInfoSQL.Select(); - deckInfoList = Statics.deckInfoSQL.Select(); + deckUnitInfoList = Statics.deckUnitInfoSQL.SelectUid(user.id); + deckInfoList = Statics.deckInfoSQL.SelectUid(user.id); + equipmentList = Statics.equipmentrSQL.SelectUid(user.id); } } else @@ -37,7 +38,6 @@ namespace Server.Service user = Statics.userSQL.SelectUuid(req.uuid); deckUnitInfoList = Statics.deckUnitInfoSQL.SelectUid(user.id); - //추후 이것을 1개만 보낼것. deckInfoList = Statics.deckInfoSQL.SelectUid(user.id); equipmentList = Statics.equipmentrSQL.SelectUid(user.id); } @@ -115,8 +115,6 @@ namespace Server.Service #endregion } - - return makeResp(user, dynamicDataList, deckUnitInfoList, deckInfoList, equipmentList); }