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; } /// /// 权限(0禁止,1只读,2读写) /// public int? Auth { get; set; } /// /// 存在 /// /// public ulong Exist { get; set; } }