提交rbac
提交设置右键错位的bug
This commit is contained in:
60
DH.RBAC/Models/Sys/SysUserLogOn.cs
Normal file
60
DH.RBAC/Models/Sys/SysUserLogOn.cs
Normal file
@ -0,0 +1,60 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.Sys
|
||||
{
|
||||
[SugarTable("Sys_UserLogOn")]
|
||||
public partial class SysUserLogOn : BaseModelEntity
|
||||
{
|
||||
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
|
||||
public string Id { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "UserId")]
|
||||
public string UserId { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "Password")]
|
||||
public string Password { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "SecretKey")]
|
||||
public string SecretKey { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "PrevVisitTime")]
|
||||
public DateTime? PrevVisitTime { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "LastVisitTime")]
|
||||
public DateTime? LastVisitTime { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "ChangePwdTime")]
|
||||
public DateTime? ChangePwdTime { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "LoginCount")]
|
||||
public int LoginCount { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "AllowMultiUserOnline")]
|
||||
public string AllowMultiUserOnline { get; set; }
|
||||
|
||||
|
||||
[SugarColumn(ColumnName = "IsOnLine")]
|
||||
public string IsOnLine { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "Question")]
|
||||
public string Question { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "AnswerQuestion")]
|
||||
public string AnswerQuestion { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "CheckIPAddress")]
|
||||
public string CheckIPAddress { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "Language")]
|
||||
public string Language { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "Theme")]
|
||||
public string Theme { get; set; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user