namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class Sys_MenuApp
|
{
|
[Key]
|
public int Menu_Id { get; set; }
|
|
public int ParentId { get; set; }
|
|
public int? Site_Id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string MenuName { get; set; }
|
|
[StringLength(50)]
|
public string MenuEnName { get; set; }
|
|
public string VueAuth { get; set; }
|
|
public string VueUrl { get; set; }
|
|
[StringLength(350)]
|
public string VueFilePath { get; set; }
|
|
[StringLength(350)]
|
public string VueName { get; set; }
|
|
public byte? IsOpen { get; set; }
|
|
public int? TypeID { get; set; }
|
|
[StringLength(200)]
|
public string Description { get; set; }
|
|
public int? LevelID { get; set; }
|
|
[StringLength(50)]
|
public string Icon { get; set; }
|
|
public int? OrderNo { get; set; }
|
|
[StringLength(50)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
[StringLength(50)]
|
public string Modifier { get; set; }
|
|
public DateTime? ModifyDate { get; set; }
|
|
public byte? Enable { get; set; }
|
|
[StringLength(350)]
|
public string HelpUrl1 { get; set; }
|
|
[StringLength(350)]
|
public string HelpUrl2 { get; set; }
|
|
[StringLength(350)]
|
public string HelpUrl3 { get; set; }
|
|
[Column(TypeName = "text")]
|
public string VueData { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|