add summary_budget_university

This commit is contained in:
kamonwan taengsuk
2023-07-12 13:42:13 +07:00
parent c59c959418
commit dac5667290
8 changed files with 192 additions and 1 deletions

View File

@@ -0,0 +1,39 @@
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; }
}
}