/*********************************************************************** * Project: CoreCms * ProjectName: 核心内容管理系统 * Web: https://www.corecms.net * Author: 大灰灰 * Email: jianweie@163.com * CreateTime: 2021/1/31 21:45:10 * Description: 暂无 ***********************************************************************/ using System.Collections.Generic; using SqlSugar; namespace CoreCms.Net.IRepository { public interface ICodeGeneratorRepository { /// /// 获取所有的表 /// /// List GetDbTables(); /// /// 获取表下面所有的字段 /// /// /// List GetDbTablesColumns(string tableName); ///// ///// 自动生成全部代码 ///// ///// ///// byte[] CodeGen(string tableName, string fileType, bool isVue = false); /// /// 自动生成类型的所有数据库代码 /// /// /// /// byte[] CodeGenByAll(string fileType, bool isVue = false); } }