40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
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<BAS_LEFTMEMU>();
|
|
}
|
|
|
|
[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> BAS_LEFTMEMU { get; set; }
|
|
}
|
|
}
|