39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class summary_budget_university
|
|
{
|
|
public string budget_year { get; set; }
|
|
public List<summary_budget_university_detail> data { get; set; }
|
|
public decimal? total_amount_1 { get; set; }
|
|
public decimal? total_amount_2 { get; set; }
|
|
public decimal? total_amount_3 { get; set; }
|
|
public decimal? total_percentage { get; set; }
|
|
public decimal? percentage_1 { get; set; }
|
|
public decimal? percentage_2 { get; set; }
|
|
public decimal? percentage_3 { get; set; }
|
|
|
|
|
|
}
|
|
|
|
public class summary_budget_university_detail
|
|
{
|
|
public string plan { get; set; }
|
|
public decimal? state_budget { get; set; }
|
|
public decimal? income_budget { get; set; }
|
|
public decimal? total_amount { get; set; }
|
|
public decimal? percentage { get; set; }
|
|
public List<summary_budget_university_detail2> data_detail { get; set; }
|
|
|
|
}
|
|
|
|
public class summary_budget_university_detail2
|
|
{
|
|
public string list { get; set; }
|
|
public decimal? state_budget { get; set; }
|
|
public decimal? income_budget { get; set; }
|
|
public decimal? total_amount { get; set; }
|
|
public decimal? percentage { get; set; }
|
|
}
|
|
} |