25 lines
457 B
C#
25 lines
457 B
C#
|
|
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; }
|
|||
|
|
}
|