WinFormTools/WinformGeneralDeveloperFrame/Entity/sysFunctionInfo.cs

31 lines
774 B
C#
Raw Normal View History

using WinformGeneralDeveloperFrame.Commons;
namespace MES.Entity
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("sysFunction")]
public partial class sysFunctionInfo
{
2021-05-29 14:11:44 +08:00
///ID
[ModelBindControl("txtid")]
public int id{set;get;}
2021-05-29 14:11:44 +08:00
///父ID
[ModelBindControl("txtpid")]
public int pid{set;get;}
2021-05-29 14:11:44 +08:00
///名称
[ModelBindControl("txtname")]
public string name{set;get;}
2021-05-29 14:11:44 +08:00
///权限编码
[ModelBindControl("txtfunctionCode")]
public string functionCode{set;get;}
2021-05-29 14:11:44 +08:00
///toolBtnID
[ModelBindControl("txttoolBtnID")]
public int toolBtnID{set;get;}
}
}