39 lines
1.6 KiB
C#
39 lines
1.6 KiB
C#
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 budget_project_name_th2 { 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; }
|
|
}
|
|
} |