mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:43:26 +08:00
vue view code gen
This commit is contained in:
@@ -52,9 +52,9 @@ namespace CoreCms.Net.Services.CodeGenerator
|
||||
/// <param name="tableName"></param>
|
||||
/// <param name="fileType"></param>
|
||||
/// <returns></returns>
|
||||
public byte[] CodeGen(string tableName, string fileType)
|
||||
public byte[] CodeGen(string tableName, string fileType, bool isVue = false)
|
||||
{
|
||||
return _dal.CodeGen(tableName, fileType);
|
||||
return _dal.CodeGen(tableName, fileType, isVue);
|
||||
}
|
||||
|
||||
|
||||
@@ -65,10 +65,9 @@ namespace CoreCms.Net.Services.CodeGenerator
|
||||
/// <param name="tableName"></param>
|
||||
/// <param name="fileType"></param>
|
||||
/// <returns></returns>
|
||||
public byte[] CodeGenByAll(string fileType)
|
||||
public byte[] CodeGenByAll(string fileType, bool isVue = false)
|
||||
{
|
||||
|
||||
return _dal.CodeGenByAll(fileType);
|
||||
return _dal.CodeGenByAll(fileType, isVue);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user