[성현모] AccountDB Core로 이동

This commit is contained in:
SHM
2025-07-24 16:54:43 +09:00
parent c6fc5328df
commit bb9ed413a7
20 changed files with 151 additions and 173 deletions

View File

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
namespace SystemX.Core.DB;
public partial class tRefreshToken
{
public string cAuid { get; set; } = null!;
public string cRefreshToken { get; set; } = null!;
}

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
namespace SystemX.Core.DB;
public partial class tRole
{
public string cAuid { get; set; } = null!;
public byte cRoleID { get; set; }
public string cRoleName { get; set; } = null!;
}

View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
namespace SystemX.Core.DB;
public partial class tUser
{
public string cUserID { get; set; } = null!;
public string cAuid { get; set; } = null!;
public string cPasswordHashed { get; set; } = null!;
public byte cState { get; set; }
public DateTime cCreateDateTime { get; set; }
public DateTime? cLastLoginDateTime { get; set; }
}