using LFlow.Base.Interfaces; using SqlSugar; namespace LFlow.Role.Model { [SugarTable("T_U_ROLE")] public class RoleModel : IDataModel { [SugarColumn(IsPrimaryKey = true)] public string ID { get; set; } public string RoleName { get; set; } public string RoleDesc { get; set; } public string RoleType { get; set; } public string RoleStatus { get; set; } public bool IsDefault { get; set; } public bool IsEnable { get; set; } } }