add summary_budget_university
This commit is contained in:
39
Models/budget/summary_budget_university.cs
Normal file
39
Models/budget/summary_budget_university.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user