33 lines
944 B
C#
33 lines
944 B
C#
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; }
|
|
}
|
|
} |