初始刷
This commit is contained in:
31
ZR.ServiceCore/Services/IService/IGenTableService.cs
Normal file
31
ZR.ServiceCore/Services/IService/IGenTableService.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using ZR.Model;
|
||||
using ZR.Model.System.Generate;
|
||||
|
||||
namespace ZR.ServiceCore.Services
|
||||
{
|
||||
public interface IGenTableService : IBaseService<GenTable>
|
||||
{
|
||||
List<GenTable> SelectDbTableListByNamess(string[] tableNames);
|
||||
|
||||
int ImportGenTable(GenTable tables);
|
||||
|
||||
int DeleteGenTableByIds(long[] tableIds);
|
||||
int DeleteGenTableByTbName(string tableName);
|
||||
PagedInfo<GenTable> GetGenTables(GenTable genTable, PagerInfo pagerInfo);
|
||||
GenTable GetGenTableInfo(long tableId);
|
||||
bool SynchDb(long tableId, GenTable genTable, List<GenTableColumn> genTableColumns);
|
||||
List<GenTable> GetGenTableAll();
|
||||
int UpdateGenTable(GenTable genTable);
|
||||
}
|
||||
|
||||
public interface IGenTableColumnService : IBaseService<GenTableColumn>
|
||||
{
|
||||
int InsertGenTableColumn(List<GenTableColumn> tableColumn);
|
||||
|
||||
int DeleteGenTableColumn(long tableId);
|
||||
int DeleteGenTableColumn(long[] tableIds);
|
||||
int DeleteGenTableColumnByTableName(string tableName);
|
||||
List<GenTableColumn> GenTableColumns(long tableId);
|
||||
int UpdateGenTableColumn(List<GenTableColumn> tableColumn);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user