This commit is contained in:
2026-02-06 18:34:35 +08:00
commit f7f4c94c00
3285 changed files with 563208 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
using iMES.Core.BaseProvider;
using iMES.Entity.DomainModels;
using System.Collections.Generic;
using System.Threading.Tasks;
using iMES.Core.Utilities;
namespace iMES.Builder.IServices
{
public partial interface ISys_TableInfoService
{
Task<(string, string)> GetTableTree();
string CreateEntityModel(Sys_TableInfo tableInfo);
WebResponseContent SaveEidt(Sys_TableInfo sysTableInfo);
string CreateServices(string tableName, string nameSpace, string foldername, bool webController, bool apiController);
string CreateVuePage(Sys_TableInfo sysTableInfo, string vuePath);
object LoadTable(int parentId, string tableName, string columnCNName, string nameSpace, string foldername, int table_Id, bool isTreeLoad,string dbServer);
Task<WebResponseContent> SyncTable(string tableName);
Task<WebResponseContent> DelTree(int table_Id);
}
}