using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("aq_BAS_PERMISSION")] public class BAS_PERMISSION { [Key] public int ID { get; set; } public int PRENTID { get; set; } public string NAME { get; set; } public string ICON { get; set; } public int SORT { get; set; } public int TYPE { get; set; } public int ISHIDDEN { get; set; } public int ISFORBIDDEN { get; set; } public DateTime? CTIME { get; set; } public int? CEID { get; set; } public string CODE { get; set; } public string URL { get; set; } public int? isblank { get;set; } } }