Files
rmutr_report/Models/budget/kpi_performance_expenditure_budget.cs
2023-07-18 12:09:15 +07:00

45 lines
1.4 KiB
C#

using System.Collections.Generic;
namespace rmutr_report.Models
{
public class kpi_performance_expenditure_budget
{
public string budget_year { get; set; }
public string start_and_end_date_report { get; set; }
public List<kpi_performance_expenditure_budget_detail> data_1 { get; set; }
public decimal? count_kpi_achieve { get; set; }
public decimal? count_kpi_pending { get; set; }
public decimal? percentage_1 { get; set; }
public decimal? percentage_2 { get; set; }
}
public class kpi_performance_expenditure_budget_detail
{
public string group_name { get; set; }
public List<kpi_performance_expenditure_budget_detail_2> data_2 { get; set; }
}
public class kpi_performance_expenditure_budget_detail_2
{
public string product { get; set; }
public List<kpi_performance_expenditure_budget_detail_3> data_3 { get; set; }
}
public class kpi_performance_expenditure_budget_detail_3
{
public string list { get; set; }
public string unit { get; set; }
public decimal? target_value_plan { get; set; }
public decimal? target_value_result { get; set; }
public string achieve { get; set; }
public string not_achieve { get; set; }
public string director { get; set; }
public string responsible_person { get; set; }
public string compiler_reporter { get; set; }
}
}