namespace WX.CRM.Model.Entity { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.BAS_MODULEMENU")] public partial class BAS_MODULEMENU { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public BAS_MODULEMENU() { BAS_LEFTMEMU = new HashSet(); } [Key] public decimal MODULEMENUID { get; set; } [StringLength(50)] public string MNAME { get; set; } [StringLength(4)] public string RIGHTID { get; set; } [StringLength(50)] public string IMAGEURL { get; set; } public decimal? SORTID { get; set; } public DateTime? CTIME { get; set; } public decimal? CREATEUSER { get; set; } public string ICON { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection BAS_LEFTMEMU { get; set; } } }