add export excel
This commit is contained in:
33
Models/budget/kpi_performance_results.cs
Normal file
33
Models/budget/kpi_performance_results.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user