55 lines
2.2 KiB
C#
55 lines
2.2 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models.RoThree
|
|
{
|
|
public class revenue_estimate_income_summary
|
|
{
|
|
public string budget_year { get; set; }
|
|
public string date_range { get; set; }
|
|
public string area { get; set; }
|
|
public string register_semester_year_1 { get; set; }
|
|
public string register_semester_year_2 { get; set; }
|
|
public string education_semester_year_1 { get; set; }
|
|
public string education_semester_year_2 { get; set; }
|
|
public List<revenue_estimate_income_summary_detail> data{ get; set; }
|
|
public decimal? sum_1 { get; set; }
|
|
public decimal? sum_2 { get; set; }
|
|
public decimal? sum_3 { get; set; }
|
|
public decimal? sum_4 { get; set; }
|
|
public decimal? sum_5 { get; set; }
|
|
public decimal? sum_6 { get; set; }
|
|
public decimal? sum_7 { get; set; }
|
|
public decimal? sum_8 { get; set; }
|
|
public decimal? sum_9 { get; set; }
|
|
public decimal? sum_10 { get; set; }
|
|
public decimal? sum_11 { get; set; }
|
|
public decimal? sum_12 { get; set; }
|
|
public decimal? sum_13 { get; set; }
|
|
public string maker { get; set; }
|
|
public string position_maker { get; set; }
|
|
public string maker_date { get; set; }
|
|
public string test { get; set; }
|
|
public string position_test { get; set; }
|
|
public string test_date { get; set; }
|
|
|
|
}
|
|
|
|
public class revenue_estimate_income_summary_detail
|
|
{
|
|
public string faculty { get; set; }
|
|
public decimal? science_1 { get; set; }
|
|
public decimal? social_1 { get; set; }
|
|
public decimal? science_2 { get; set; }
|
|
public decimal? social_2 { get; set; }
|
|
public decimal? total_register_fee { get; set; }
|
|
public decimal? science_3 { get; set; }
|
|
public decimal? social_3 { get; set; }
|
|
public decimal? science_4 { get; set; }
|
|
public decimal? social_4 { get; set; }
|
|
public decimal? total_education_fee { get; set; }
|
|
public decimal? total_science { get; set; }
|
|
public decimal? total_social { get; set; }
|
|
public decimal? total_science_social { get; set; }
|
|
|
|
}
|
|
} |