38 lines
1.5 KiB
C#
38 lines
1.5 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class summary_budget_expense
|
|
{
|
|
public string budget_year { get; set; }
|
|
public string agency_name_th { get; set; }
|
|
public string budget_plan_name_th { get; set; }
|
|
public string parent_agency_name { get; set; }
|
|
public List<summary_budget_expense_detail> data { get; set; }
|
|
public decimal? total_equipment { get; set; }
|
|
public decimal? total_land_building { get; set; }
|
|
public decimal? total_subsidy { get; set; }
|
|
public decimal? total_compensation { get; set; }
|
|
public decimal? total_living_expenses { get; set; }
|
|
public decimal? total_material { get; set; }
|
|
public decimal? total_utilities { get; set; }
|
|
public decimal? total_other_expenses { get; set; }
|
|
public decimal? total_other_budget_expenses { get; set; }
|
|
public decimal? total_all { get; set; }
|
|
}
|
|
|
|
public class summary_budget_expense_detail
|
|
{
|
|
public string budget_project_name_th { get; set; }
|
|
public decimal? equipment { get; set; }
|
|
public decimal? land_building { get; set; }
|
|
public decimal? subsidy { get; set; }
|
|
public decimal? compensation { get; set; }
|
|
public decimal? living_expenses { get; set; }
|
|
public decimal? material { get; set; }
|
|
public decimal? utilities { get; set; }
|
|
public decimal? other_expenses { get; set; }
|
|
public decimal? other_budget_expenses { get; set; }
|
|
public decimal? total { get; set; }
|
|
}
|
|
} |