开发代码生成功能

This commit is contained in:
izory
2021-09-06 18:35:36 +08:00
parent 23187ed8c5
commit c1e014a5d0
14 changed files with 738 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
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(string dbType);
List<DbTableInfo> GetTablesWithPage(string tablename, string dbName, PagerInfo info);
}
}