优化代码生成同步

This commit is contained in:
不做码农
2023-05-03 18:39:01 +08:00
parent 4e628e58db
commit 01b304634e
3 changed files with 54 additions and 24 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using SqlSugar;
using System.Collections.Generic;
using ZR.Model;
using ZR.Model.System.Generate;
@@ -14,7 +15,7 @@ namespace ZR.Service.System.IService
int DeleteGenTableByTbName(string tableName);
PagedInfo<GenTable> GetGenTables(GenTable genTable, PagerInfo pagerInfo);
GenTable GetGenTableInfo(long tableId);
void SynchDb(long tableId, GenTable genTable, List<GenTableColumn> dbTableColumns);
bool SynchDb(long tableId, GenTable genTable, List<GenTableColumn> genTableColumns);
List<GenTable> GetGenTableAll();
int UpdateGenTable(GenTable genTable);
}