2021-04-13 17:46:18 +08:00
|
|
|
using WinformGeneralDeveloperFrame.Commons;
|
2021-05-29 14:11:44 +08:00
|
|
|
|
2021-04-13 17:46:18 +08:00
|
|
|
namespace MES.Entity
|
|
|
|
|
{
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.Data.Entity.Spatial;
|
|
|
|
|
|
|
|
|
|
[Table("sysMenu")]
|
|
|
|
|
public partial class sysMenuInfo
|
|
|
|
|
{
|
2021-05-29 14:11:44 +08:00
|
|
|
///ID
|
|
|
|
|
[ModelBindControl("txtid")]
|
|
|
|
|
public int id{set;get;}
|
|
|
|
|
///父id
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtpid")]
|
|
|
|
|
public int pid{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///菜单名称
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtname")]
|
|
|
|
|
public string name{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///图标
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txticon")]
|
|
|
|
|
public string icon{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///菜单类型
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtwinformType")]
|
|
|
|
|
public string winformType{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///排序
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtsort")]
|
|
|
|
|
public string sort{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///有效
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtisEnabled")]
|
|
|
|
|
public bool isEnabled{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///功能按钮
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txttoolList")]
|
|
|
|
|
public string toolList{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///创建人
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtcreatorId")]
|
|
|
|
|
public int creatorId{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///创建时间
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtcreateTime")]
|
|
|
|
|
public DateTime? createTime{set;get;}=DateTime.Now;
|
2021-05-29 14:11:44 +08:00
|
|
|
///编辑人
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txteditorId")]
|
|
|
|
|
public int editorId{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///编辑时间
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txteditTime")]
|
|
|
|
|
public DateTime? editTime{set;get;}=DateTime.Now;
|
2021-05-29 14:11:44 +08:00
|
|
|
///是否界面
|
2021-04-13 17:46:18 +08:00
|
|
|
[ModelBindControl("txtisForm")]
|
|
|
|
|
public bool isForm{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///是否功能按钮
|
2021-04-21 13:30:43 +08:00
|
|
|
[ModelBindControl("txtisToolBtn")]
|
2021-05-29 14:11:44 +08:00
|
|
|
public bool isToolBtn{set;get;}
|
|
|
|
|
///functionCode
|
2021-05-12 08:50:36 +08:00
|
|
|
[ModelBindControl("txtfunctionCode")]
|
2021-05-29 14:11:44 +08:00
|
|
|
public string functionCode{set;get;}
|
|
|
|
|
|
2021-04-13 17:46:18 +08:00
|
|
|
}
|
|
|
|
|
}
|