53 lines
802 B
C#
53 lines
802 B
C#
using LFlow.Base.Interfaces;
|
|
using SqlSugar;
|
|
|
|
namespace LFlow.Role.Model
|
|
{
|
|
[SugarTable("T_U_USERINFO")]
|
|
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;
|
|
}
|
|
}
|
|
|
|
}
|