13 lines
304 B
C#
13 lines
304 B
C#
|
|
using CloudBuilder.Security.Entity;
|
|
using CloudBuilder.Security.SearchCriteria;
|
|
using CloudBuilder.Core.Service;
|
|
|
|
namespace CloudBuilder.Security.Service
|
|
{
|
|
public interface ISysTableSchemaViewService : IService
|
|
{
|
|
List<SysTableSchemaViewEntity> FindByTableName(string tableName);
|
|
}
|
|
}
|