using ERP.Framework.Enum; using ERP.Framework.WebApi; using System.ComponentModel.DataAnnotations.Schema; namespace ERP.Core.Entities { [Table("sys_role")] public class SysRole : BaseEntity { /// /// /// public virtual string RoleName { get; set; } = string.Empty; /// /// /// public virtual string RoleKey { get; set; } = string.Empty; /// /// /// public virtual int OrderNum { get; set; } /// /// /// public virtual StatusEnum RoleStatus { get; set; } /// /// /// public virtual StatusEnum DataStatus { get; set; } } }