From 10bc0e4abd945bf5dc492a74f7de4cf3dbf3806e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=ED=8C=90=EB=8F=8C?= Date: Thu, 30 Nov 2023 22:17:16 +0900 Subject: [PATCH] =?UTF-8?q?=EB=88=84=EB=9D=BD=EB=90=9C=20=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=84=B0=20=EC=97=85=EB=A1=9C=EB=93=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Server/SQL/DeckUnitInfo.cs | 5 ++--- Server/SQL/LeaderInfo.cs | 14 +++++++++++--- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/Server/SQL/DeckUnitInfo.cs b/Server/SQL/DeckUnitInfo.cs index 6d596ce..50d48ca 100644 --- a/Server/SQL/DeckUnitInfo.cs +++ b/Server/SQL/DeckUnitInfo.cs @@ -9,9 +9,8 @@ namespace Server.SQL public class DeckUnitInfo { public int id { get; set; } - public string uuid { get; set; } - public string mail { get; set; } - public string nickname { get; set; } + public int unit_id { get; set; } + public int user_id { get; set; } } public class DeckUnitInfoSQL : SQL diff --git a/Server/SQL/LeaderInfo.cs b/Server/SQL/LeaderInfo.cs index ec87742..f46d6ef 100644 --- a/Server/SQL/LeaderInfo.cs +++ b/Server/SQL/LeaderInfo.cs @@ -9,9 +9,17 @@ namespace Server.SQL public class LeaderInfo { public int id { get; set; } - public string uuid { get; set; } - public string mail { get; set; } - public string nickname { get; set; } + public int leader_id { get; set; } + public int deck_unit0_id { get; set; } + public int deck_unit1_id { get; set; } + public int deck_unit2_id { get; set; } + public int deck_unit3_id { get; set; } + public int deck_unit4_id { get; set; } + public int deck_unit5_id { get; set; } + public int deck_unit6_id { get; set; } + public int deck_unit7_id { get; set; } + public int deck_unit8_id { get; set; } + public int user_id { get; set; } } public class LeaderInfoSQL : SQL