初始化
This commit is contained in:
23
DAL/New_Models/TbSysOauth2.cs
Normal file
23
DAL/New_Models/TbSysOauth2.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.New_Models;
|
||||
|
||||
public partial class TbSysOauth2
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string? Code { get; set; }
|
||||
|
||||
public string? RedirectUri { get; set; }
|
||||
|
||||
public string? AccessToken { get; set; }
|
||||
|
||||
public int? ExpiresIn { get; set; }
|
||||
|
||||
public string? RefreshToken { get; set; }
|
||||
|
||||
public DateTime? CreatedDate { get; set; }
|
||||
|
||||
public string? Account { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user