using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("aq_BAS_ROLE_PERMISSION")] public class BAS_ROLE_PERMISSION { [Key, Column(Order = 0)] public int RID { get; set; } public string RNAME { get; set; } [Key, Column(Order = 1)] public string CODE { get; set; } public string PNAME { get; set; } public int TOOLBARAVLUE { get; set; } public int PID { get; set; } } }