From e90d7b075af55f8700a8d1fa0a3b889ad70835dd Mon Sep 17 00:00:00 2001 From: Yezi <53083103+yeziuku@users.noreply.github.com> Date: Tue, 30 May 2023 19:51:11 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=A4=9A=E4=BD=99=E5=AD=97?= =?UTF-8?q?=E7=AC=A6=20(#26)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Library/SQLScript/Common/VerifyCodes.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/SQLScript/Common/VerifyCodes.cs b/Library/SQLScript/Common/VerifyCodes.cs index 0911c4a..fb8a868 100644 --- a/Library/SQLScript/Common/VerifyCodes.cs +++ b/Library/SQLScript/Common/VerifyCodes.cs @@ -8,7 +8,7 @@ public const string Column_RegVerifyCode = "RegVerifyCode"; public const string Column_RegTime = "RegTime"; - public static string Insert_RegVerifyCodes(string Username, string Email, string RegVerifyCodes) + public static string Insert_RegVerifyCode(string Username, string Email, string RegVerifyCodes) { return $"{Constant.Command_Insert} {Constant.Command_Into} {TableName} ({Column_Username}, {Column_Email}, {Column_RegVerifyCode}, {Column_RegTime}) {Constant.Command_Values} ('{Username}', '{Email}', '{RegVerifyCodes}', '{DateTime.Now}')"; } @@ -37,7 +37,7 @@ public const string Column_ForgetVerifyCode = "ForgetVerifyCode"; public const string Column_SendTime = "SendTime"; - public static string Insert_ForgetVerifyCodes(string Username, string Email, string ForgetVerifyCodes) + public static string Insert_ForgetVerifyCode(string Username, string Email, string ForgetVerifyCodes) { return $"{Constant.Command_Insert} {Constant.Command_Into} {TableName} ({Column_Username}, {Column_Email}, {Column_ForgetVerifyCode}, {Column_SendTime}) {Constant.Command_Values} ('{Username}', '{Email}', '{ForgetVerifyCodes}', '{DateTime.Now}')"; }