24 lines
623 B
C#
24 lines
623 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ZR.Model;
|
|
using ZR.Model.CodeGenerator;
|
|
|
|
namespace ZR.Service.IService
|
|
{
|
|
//public interface ICodeGeneratorService
|
|
//{
|
|
// List<DataBaseInfo> GetAllDataBases();
|
|
|
|
// List<SqlSugar.DbTableInfo> GetTablesWithPage(string tablename, string dbName, PagerInfo info);
|
|
|
|
// List<DbFieldInfo> GetAllColumns(string tableName);
|
|
|
|
// List<DbTableInfo> GetAllTables(string tabList);
|
|
|
|
// List<SqlSugar.DbColumnInfo> GetColumnInfo(string dbName, string tableName);
|
|
//}
|
|
}
|