add export excel

This commit is contained in:
kamonwan taengsuk
2023-02-07 17:06:15 +07:00
parent da83c3a288
commit 23c2e53d08
11 changed files with 934 additions and 6 deletions

View File

@@ -0,0 +1,33 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class kpi_performance_results
{
public string budget_year { get; set; }
public string plan_year { get; set; }
public List<kpi_performance_result_data> header_data { get; set; }
}
public class kpi_performance_result_data
{
public string strategic_issues { get; set; }
public List<detail_kpi_performance_result> data { get; set; }
}
public class detail_kpi_performance_result
{
public string name { get; set; }
public string unit { get; set; }
public string director { get; set; }
public string responsible_person { get; set; }
public string compiler_reporter { get; set; }
public decimal? value { get; set; }
public decimal? result { get; set; }
public string achieve { get; set; }
public string note { get; set; }
}
}