31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class kpi_performance_finance
|
|
{
|
|
public string year_range { get; set; }
|
|
public string budget_year { get; set; }
|
|
public string budget_month { get; set; }
|
|
public string plan_year { get; set; }
|
|
public List<kpi_performance_finance_data> header_data { get; set; }
|
|
}
|
|
public class kpi_performance_finance_data
|
|
{
|
|
public string strategic_issues { get; set;}
|
|
public List<detail_kpi_performance_data> data { get; set; }
|
|
}
|
|
public class detail_kpi_performance_data
|
|
{
|
|
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; }
|
|
|
|
}
|
|
} |