[성현모] AccountDB Core로 이동
This commit is contained in:
@ -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!;
|
||||
}
|
||||
@ -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!;
|
||||
}
|
||||
@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user