初始化
This commit is contained in:
24
WebAPIServer/Models/TblUtsManageAuthlog.cs
Normal file
24
WebAPIServer/Models/TblUtsManageAuthlog.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace WebAPIServer.Models;
|
||||
|
||||
public partial class TblUtsManageAuthlog
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public int? UserId { get; set; }
|
||||
|
||||
public int? AuthId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 权限(0禁止,1只读,2读写)
|
||||
/// </summary>
|
||||
public int? Auth { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 存在
|
||||
///
|
||||
/// </summary>
|
||||
public ulong Exist { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user