开发优化代码生成功能
This commit is contained in:
30
ZR.Service/System/IService/IGenTableService.cs
Normal file
30
ZR.Service/System/IService/IGenTableService.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user