76 lines
3.0 KiB
C#
76 lines
3.0 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class summary_government_budget_plan
|
|
{
|
|
public string budget_year { get; set; }
|
|
public List<summary_government_budget_plan_detail> data { get; set; }
|
|
public List<notation> notations { get; set; }
|
|
public decimal? budget_1 { get; set; }
|
|
public decimal? budget_2 { get; set; }
|
|
public decimal? budget_3 { get; set; }
|
|
public decimal? budget_4 { get; set; }
|
|
public decimal? budget_5 { get; set; }
|
|
public decimal? budget_6 { get; set; }
|
|
public decimal? budget_7 { get; set; }
|
|
public decimal? budget_8 { get; set; }
|
|
public decimal? budget_9 { get; set; }
|
|
public decimal? budget_10 { get; set; }
|
|
public decimal? budget_11 { get; set; }
|
|
public decimal? budget_12 { get; set; }
|
|
public decimal? budget_13 { get; set; }
|
|
public decimal? budget_14 { get; set; }
|
|
public decimal? budget_15 { get; set; }
|
|
public decimal? budget_16 { get; set; }
|
|
public decimal? budget_17 { get; set; }
|
|
public decimal? budget_18 { get; set; }
|
|
}
|
|
|
|
public class summary_government_budget_plan_detail
|
|
{
|
|
public int? topic_type { get; set; }
|
|
public string row_no { get; set; }
|
|
public string product { get; set; }
|
|
public decimal? personnel_government_budget { get; set; }
|
|
public decimal? personnel_income_budget { get; set; }
|
|
public decimal? total_personnel_income_budget { get; set; }
|
|
public decimal? operating_government_budget { get; set; }
|
|
public decimal? operating_income_budget { get; set; }
|
|
public decimal? total_operating_income_budget { get; set; }
|
|
public decimal? investment_government_budget { get; set; }
|
|
public decimal? investment_income_budget { get; set; }
|
|
public decimal? total_investment_income_budget { get; set; }
|
|
public decimal? subsidy_government_budget { get; set; }
|
|
public decimal? subsidy_income_budget { get; set; }
|
|
public decimal? total_subsidy_income_budget { get; set; }
|
|
public decimal? expenses_government_budget { get; set; }
|
|
public decimal? expenses_income_budget { get; set; }
|
|
public decimal? total_expenses_income_budget { get; set; }
|
|
public decimal? government_budget { get; set; }
|
|
public decimal? government_income_budget { get; set; }
|
|
public decimal? total_government_income_budget { get; set; }
|
|
}
|
|
|
|
public class notation
|
|
{
|
|
public string row_no { get; set; }
|
|
public string list { get; set; }
|
|
public string date_range { get; set; }
|
|
public decimal? amount { get; set; }
|
|
public string free_text { get; set; }
|
|
public List<notation2> notations_detail { get; set; }
|
|
|
|
}
|
|
|
|
public class notation2
|
|
{
|
|
public string sub_row_no { get; set; }
|
|
public string list { get; set; }
|
|
public decimal? amount { get; set; }
|
|
public string free_text { get; set; }
|
|
|
|
}
|
|
|
|
|
|
} |