SqlSugar/Src/Asp.Net/SqlSugar/Entities/SchemaInfo.cs
2017-06-22 12:55:03 +08:00

14 lines
246 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SqlSugar
{
public class SchemaInfo
{
public string TableName { get; set; }
public string SchemaName { get; set; }
}
}