Esempio n. 1
0
 public async Task <object> GetDataFilesAsync(string tableName = "")
 {
     return(new MessageModel <string>()
     {
         Success = true,
         Message = "数据导出成功",
         Response = await _tableData.ExportTable(tableName, Path.Combine(Env.WebRootPath, "dataJson"))
     });
 }