分支自 SuZhouGuanHong/TaiYuanTaiZhong

PCS
dengjunjie
2023-12-13 113d1d4262d8f9e78a9d92123713c41669ad6c87
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);
    }
}