2021-05-07 17:59:08 +08:00
|
|
|
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;
|
2021-05-07 17:59:08 +08:00
|
|
|
}
|
|
|
|
|
}
|