using System; using System.Collections.Generic; namespace MySQLAccess.PGModels; public partial class Roleinfo { /// /// 主键ID /// public int Id { get; set; } /// /// 角色名称 /// public string? Rolename { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 页面权限 /// public string? Permission { get; set; } /// /// 是否删除标记 /// public bool? IsDelete { get; set; } /// /// 设备权限 /// public string? DeviceLicense { get; set; } }