add รายงานผลรอบ 6 เดือน
This commit is contained in:
45
Models/budget/kpi_performance_expenditure_budget.cs
Normal file
45
Models/budget/kpi_performance_expenditure_budget.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
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; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user