下载人员标签

parent 75e63949
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.StaticFiles;
......@@ -176,12 +177,13 @@ public ApiResponse GetReportPersonTag(int hospitalId, int allotId)
/// <returns></returns>
[Route("DownloadReportPersonTag")]
[HttpPost]
[AllowAnonymous]
public ActionResult DownloadReportPersonTag(int hospitalId, int allotId)
{
var (result, colHeaders) = reportGlobalService.GetReportPersonTag(hospitalId, allotId);
var ser = JsonHelper.Serialize(result);
var ser = JsonHelper.Serialize(result.Data);
var rows = JsonHelper.Deserialize<List<Dictionary<string, object>>>(ser);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment