[성현모] AuthApi 분리

This commit is contained in:
SHM
2025-07-15 10:16:26 +09:00
parent 20f1e7e7e5
commit 7a12be392a
52 changed files with 1931 additions and 60 deletions

View File

@ -0,0 +1,10 @@
CREATE TABLE [dbo].[tUser]
(
[cUserID] NVARCHAR(50) NOT NULL,
[cAuid] NVARCHAR(250) NOT NULL ,
[cPasswordHashed] NVARCHAR(250) NOT NULL,
[cState] tinyint NOT NULL,
[cCreateDateTime] DATETIME2 NOT NULL,
[cLastLoginDateTime] DATETIME2 NULL,
PRIMARY KEY ([cUserID])
)