WinFormTools/WinformGeneralDeveloperFrame/sysDataTableInfo.cs

23 lines
702 B
C#
Raw Normal View History

2021-04-13 17:46:18 +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("sysDataTable")]
public partial class sysDataTableInfo
{
[Key]
[ModelBindControl("txtDataTableName")]
public string DataTableName{set;get;}
[ModelBindControl("txtDataTableSql")]
public string DataTableSql{set;get;}
[ModelBindControl("txtDataTableUrl")]
public string DataTableUrl{set;get;}
[ModelBindControl("txtDataSourceName")]
public string DataSourceName { set; get; }
}
}