分支自 SuZhouGuanHong/TaiYuanTaiZhong

huanghongfeng
2024-07-09 a8e17feaaaafd549c81ea7e18f5c968af28d9391
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using WIDESEA_Core.BaseProvider;
using WIDESEA_Entity.DomainModels;
using System.Collections.Generic;
using System.Threading.Tasks;
using WIDESEA_Core.Utilities;
 
namespace WIDESEA_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);
        Task<WebResponseContent> SyncTable(string tableName);
        Task<WebResponseContent> DelTree(int table_Id);
    }
}