/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* 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);
}
}