41 lines
945 B
C#
41 lines
945 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.BAS_LEFTMEMU")]
|
|
public partial class BAS_LEFTMEMU
|
|
{
|
|
[Key]
|
|
public decimal MENUID { get; set; }
|
|
|
|
public decimal? MODULEMENUID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string MNAME { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(200)]
|
|
public string URL { get; set; }
|
|
|
|
public short ISGROUP { get; set; }
|
|
|
|
public short ISSHOW { get; set; }
|
|
|
|
[StringLength(4)]
|
|
public string RIGHTID { get; set; }
|
|
|
|
public decimal? PARENTID { get; set; }
|
|
|
|
public decimal? SORTID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public decimal? CREATEUSER { get; set; }
|
|
|
|
public virtual BAS_MODULEMENU BAS_MODULEMENU { get; set; }
|
|
}
|
|
}
|