开发优化代码生成功能

This commit is contained in:
izory
2021-09-17 18:19:53 +08:00
parent 48acf4b9f7
commit 30e1098a45
17 changed files with 1222 additions and 146 deletions

View File

@@ -0,0 +1,30 @@
using Infrastructure.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ZR.Model.System.Generate;
namespace ZR.Service.System.IService
{
public interface IGenTableService
{
List<GenTable> SelectDbTableListByNamess(string[] tableNames);
int InsertGenTable(GenTable tables);
int DeleteGenTable(GenTable table);
PagedInfo<GenTable> GetGenTables(GenTable genTable, Model.PagerInfo pagerInfo);
GenTable GetGenTableInfo(long tableId);
}
public interface IGenTableColumnService
{
int InsertGenTableColumn(List<GenTableColumn> tableColumn);
int DeleteGenTableColumn(long tableId);
List<GenTableColumn> GenTableColumns(long tableId);
}
}