WinFormTools/WinformGeneralDeveloperFrame/Entity/sysFunctionInfo.cs

26 lines
706 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
{
[ModelBindControl("txtid")]
public int id{set;get;}
[ModelBindControl("txtpid")]
public int pid{set;get;}
[ModelBindControl("txtname")]
public string name{set;get;}
[ModelBindControl("txtfunctionCode")]
public string functionCode{set;get;}
2021-05-26 17:17:51 +08:00
[ModelBindControl("txttoolBtnID")]
public int toolBtnID { set; get; } = 0;
}
}