Mini.Crm/Mini.Model/Entity/Bas_LeftMemu.cs

22 lines
628 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace Mini.Model.Entity
{
public class Bas_LeftMemu : BaseEntity
{
[Key]
public int MenuId { get; set; }
public int ModuleMenuId { get; set; }
public string MName { get; set; }
public string Url { get; set; }
public int IsGroup { get; set; }
public int IsShow { get; set; }
public string RightId { get; set; }
public int? ParentId { get; set; }
public int SortId { get; set; }
public DateTime CTime { get; set; }
public int CreateUser { get; set; }
}
}