using Datory;
using Datory.Annotations;
namespace GxPress.Entity
{
///
/// 角色组
///
[DataTable("tede_role_group")]
public class RoleGroup : Datory.Entity
{
///
/// 角色组名
///
[DataColumn]
public string Name { get; set; }
///
/// 角色组排序
///
[DataColumn]
public int Sort { get; set; }
}
}