namespace WX.CRM.Model.Entity { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.BAS_RIGHTGROUP")] public partial class BAS_RIGHTGROUP { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public BAS_RIGHTGROUP() { BAS_RIGHT = new HashSet(); } [Key] public decimal PKID { get; set; } [Required] [StringLength(50)] public string NAME { get; set; } public decimal PARENTID { get; set; } public DateTime? CTIME { get; set; } public decimal? CREATEUSER { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection BAS_RIGHT { get; set; } } }