using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace HighWayIot.Repository.domain { /// /// 角色信息 /// [SugarTable("sys_role")] public class SysRoleEntity { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注:角色名称 /// 默认值: /// [SugarColumn(ColumnName = "role_name")] public string RoleName { get; set; } /// /// 备 注:角色权限设定 /// 默认值:100个0组成的字符串 /// [SugarColumn(ColumnName = "role_set")] public string RoleSet { get; set; } = null; } }