26 lines
708 B
C#
26 lines
708 B
C#
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("sysToolButton")]
|
|
public partial class sysToolButtonInfo
|
|
{
|
|
[ModelBindControl("txtid")]
|
|
public int id{set;get;}
|
|
[ModelBindControl("txtbtnName")]
|
|
public string btnName{set;get;}
|
|
[ModelBindControl("txtbtnCode")]
|
|
public string btnCode{set;get;}
|
|
[ModelBindControl("txtbtnIcon")]
|
|
public string btnIcon{set;get;}
|
|
[ModelBindControl("txtremark")]
|
|
public string remark{set;get;}
|
|
|
|
}
|
|
} |