This commit is contained in:
@@ -5,39 +5,31 @@ namespace rmutr_report.Models
|
||||
public class expenditure_budget_proposal
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
// public decimal? budget_amount { get; set; }
|
||||
// public decimal? total_amount_1 { get; set; }
|
||||
// public decimal? total_amount_2 { get; set; }
|
||||
public List<group_headers> group_header { get; set; }
|
||||
public decimal? total_budget { get; set; }
|
||||
public List<proposal_initial_project> projects { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class group_headers
|
||||
{
|
||||
public string list_1 { get; set; }
|
||||
public string list_2 { get; set; }
|
||||
public string rowno { get; set; }
|
||||
public string list_3 { get; set; }
|
||||
public decimal? budget_amount { get; set; }
|
||||
public decimal? total_amount_1 { get; set; }
|
||||
public decimal? total_amount_2 { get; set; }
|
||||
public List<expenditure_budget_proposal_headers> header { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class expenditure_budget_proposal_headers
|
||||
public class proposal_initial_project
|
||||
{
|
||||
public string rowno { get; set; }
|
||||
public string header { get; set; }
|
||||
public decimal? budget_amount { get; set; }
|
||||
public List<expenditure_budget_proposal_headers2> data { get; set; }
|
||||
|
||||
public string project_name_th { get; set; }
|
||||
public decimal? total_budget { get; set; }
|
||||
public List<proposal_initial_type> types { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class expenditure_budget_proposal_headers2
|
||||
public class proposal_initial_type
|
||||
{
|
||||
public string list { get; set; }
|
||||
public string type_name { get; set; }
|
||||
public decimal? total_budget { get; set; }
|
||||
public List<proposal_initial_list> lists { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class proposal_initial_list
|
||||
{
|
||||
public string list_name { get; set; }
|
||||
public decimal? target_group_count { get; set; }
|
||||
public string target_group_unit { get; set; }
|
||||
public decimal? time_count { get; set; }
|
||||
@@ -46,15 +38,12 @@ namespace rmutr_report.Models
|
||||
public string budget_unit { get; set; }
|
||||
public decimal? quantity { get; set; }
|
||||
public string quantity_unit { get; set; }
|
||||
public decimal? budget_amount { get; set; }
|
||||
public List<expenditure_budget_proposal_headers3> data2 { get; set; }
|
||||
|
||||
|
||||
public decimal? total_budget { get; set; }
|
||||
public List<proposal_initial_detail> details { get; set; }
|
||||
}
|
||||
|
||||
public class expenditure_budget_proposal_headers3
|
||||
public class proposal_initial_detail
|
||||
{
|
||||
public string list { get; set; }
|
||||
public string detail_name { get; set; }
|
||||
public decimal? target_group_count { get; set; }
|
||||
public string target_group_unit { get; set; }
|
||||
public decimal? time_count { get; set; }
|
||||
@@ -63,6 +52,6 @@ namespace rmutr_report.Models
|
||||
public string budget_unit { get; set; }
|
||||
public decimal? quantity { get; set; }
|
||||
public string quantity_unit { get; set; }
|
||||
public decimal? budget_amount { get; set; }
|
||||
public decimal? total_budget { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user