You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
712 B
C#
33 lines
712 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("sys_role_privliege")]
|
|
[Serializable]
|
|
public class SysRolePrivliege : BaseEntity
|
|
{
|
|
[Column("role_id")]
|
|
[DisplayName(" ")]
|
|
public int RoleId { get; set; }
|
|
|
|
[Column("program")]
|
|
[DisplayName(" ")]
|
|
public string Program { get; set; }
|
|
|
|
[Column("fun_name")]
|
|
[DisplayName(" ")]
|
|
public string FunName { get; set; }
|
|
|
|
[Column("auth_seq")]
|
|
[DisplayName(" ")]
|
|
public int AuthSeq { get; set; }
|
|
|
|
|
|
}
|
|
}
|