LFlow/LFlow.Role/Model/RoleModel.cs

53 lines
798 B
C#
Raw Normal View History

2024-11-01 16:46:18 +08:00
using LFlow.Base.Interfaces;
using SqlSugar;
namespace LFlow.Role.Model
{
2024-11-01 17:11:44 +08:00
[SugarTable("T_U_ROLE")]
2024-11-01 16:46:18 +08:00
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;
}
}
}