This commit is contained in:
kamonwan taengsuk
2023-08-03 14:42:43 +07:00
parent 6c2b784439
commit 63190b8aa3
8 changed files with 383 additions and 43 deletions

View File

@@ -0,0 +1,38 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class summary_subsidy_projects
{
public string budget_year { get; set; }
public string date_range { get; set; }
public string budget_project_name_th { get; set; }
public string agency_name_th { get; set; }
public string education_level_and_year { get; set; }
public string branch_name_th { get; set; }
public List<summary_subsidy_projects_data> data { get; set; }
}
public class summary_subsidy_projects_data
{
public int? topic_type { get; set; }
public int? row_no { get; set; }
public string project_name_th { get; set; }
public decimal? project_amount { get; set; }
public decimal? participants_amount { get; set; }
public decimal? organize_amount { get; set; }
public decimal? participants_eachtime_amount { get; set; }
public decimal? increased_cognition_amount { get; set; }
public decimal? customer_satisfaction { get; set; }
public decimal? project_achieve_objectives { get; set; }
public decimal? project_complete { get; set; }
public string start_date { get; set; }
public string end_date { get; set; }
public decimal? compensation { get; set; }
public decimal? cost { get; set; }
public decimal? material_cost { get; set; }
public decimal? total_budget { get; set; }
public string responsible_person { get; set; }
}
}