using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("aq_BAS_MODULEMENU")] public partial class BAS_MODULEMENU { [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; } } }