add ง.5-1

This commit is contained in:
kamonwan taengsuk
2023-06-21 12:08:48 +07:00
parent 3a0a8213fa
commit 64836ac0e5
8 changed files with 806 additions and 1 deletions

View File

@@ -0,0 +1,146 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class request_project_budget
{
public string budget_year { get; set; }
public string allocate_year { get; set; }
public string request_year { get; set; }
public List<request_project_budget1> data_1 { get; set; }
}
public class request_project_budget1
{
public string faculty_name_th { get; set; }
public decimal? compensation { get; set; }
public decimal? cost { get; set; }
public decimal? material_cost { get; set; }
public decimal? total_amount { get; set; }
public decimal? project_amount { get; set; }
public decimal? allocate_amount { get; set; }
public decimal? request_amount { get; set; }
public decimal? online { get; set; }
public decimal? onsite { get; set; }
public List<request_project_budget2> data_2 { get; set; }
}
public class request_project_budget2{
public string list { get; set; }
public string project_objectives { get; set; }
public string target_group { get; set; }
public string kpi { get; set; }
public string target_sdg { get; set; }
public decimal? compensation { get; set; }
public decimal? cost { get; set; }
public decimal? material_cost { get; set; }
public decimal? total_amount { get; set; }
public string period { get; set; }
public decimal? project_amount { get; set; }
public string target_1 { get; set; }
public string target_2 { get; set; }
public string target_3 { get; set; }
public string target_4 { get; set; }
public string target_5 { get; set; }
public string target_6 { get; set; }
public string unit { get; set; }
public decimal? unit_amount { get; set; }
public decimal? allocate_amount { get; set; }
public decimal? request_amount { get; set; }
public decimal? online { get; set; }
public decimal? onsite { get; set; }
public string budget_source { get; set; }
public string remark { get; set; }
public List<request_project_budget3> data_3 { get; set; }
}
public class request_project_budget3
{
public string list { get; set; }
public string project_objectives { get; set; }
public string target_group { get; set; }
public string kpi { get; set; }
public string target_sdg { get; set; }
public decimal? compensation { get; set; }
public decimal? cost { get; set; }
public decimal? material_cost { get; set; }
public decimal? total_amount { get; set; }
public string period { get; set; }
public decimal? project_amount { get; set; }
public string target_1 { get; set; }
public string target_2 { get; set; }
public string target_3 { get; set; }
public string target_4 { get; set; }
public string target_5 { get; set; }
public string target_6 { get; set; }
public string unit { get; set; }
public decimal? unit_amount { get; set; }
public decimal? allocate_amount { get; set; }
public decimal? request_amount { get; set; }
public decimal? online { get; set; }
public decimal? onsite { get; set; }
public string budget_source { get; set; }
public string remark { get; set; }
public List<request_project_budget4> data_4 { get; set; }
}
public class request_project_budget4
{
public string list { get; set; }
public string project_objectives { get; set; }
public string target_group { get; set; }
public string kpi { get; set; }
public string target_sdg { get; set; }
public decimal? compensation { get; set; }
public decimal? cost { get; set; }
public decimal? material_cost { get; set; }
public decimal? total_amount { get; set; }
public string period { get; set; }
public decimal? project_amount { get; set; }
public string target_1 { get; set; }
public string target_2 { get; set; }
public string target_3 { get; set; }
public string target_4 { get; set; }
public string target_5 { get; set; }
public string target_6 { get; set; }
public string unit { get; set; }
public decimal? unit_amount { get; set; }
public decimal? allocate_amount { get; set; }
public decimal? request_amount { get; set; }
public decimal? online { get; set; }
public decimal? onsite { get; set; }
public string budget_source { get; set; }
public string remark { get; set; }
public List<request_project_budget5> data_5 { get; set; }
}
public class request_project_budget5
{
public string list { get; set; }
public string project_objectives { get; set; }
public string target_group { get; set; }
public string kpi { get; set; }
public string target_sdg { get; set; }
public decimal? compensation { get; set; }
public decimal? cost { get; set; }
public decimal? material_cost { get; set; }
public decimal? total_amount { get; set; }
public string period { get; set; }
public decimal? project_amount { get; set; }
public string target_1 { get; set; }
public string target_2 { get; set; }
public string target_3 { get; set; }
public string target_4 { get; set; }
public string target_5 { get; set; }
public string target_6 { get; set; }
public string unit { get; set; }
public decimal? unit_amount { get; set; }
public decimal? allocate_amount { get; set; }
public decimal? request_amount { get; set; }
public decimal? online { get; set; }
public decimal? onsite { get; set; }
public string budget_source { get; set; }
public string remark { get; set; }
}
}