64 lines
2.4 KiB
C#
64 lines
2.4 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models.RoThree
|
|
{
|
|
public class revenue_estimate_education_fee
|
|
{
|
|
public string budget_year { get; set; }
|
|
public string area { get; set; }
|
|
public string faculty { get; set; }
|
|
public string semester { get; set; }
|
|
public string year { get; set; }
|
|
public string budget_project_name_th { get; set; }
|
|
public List<revenue_estimate_education_fee_detail1> data_1 { get; set; }
|
|
public string side { get; set; }
|
|
public decimal? total_curriculum { get; set; }
|
|
public decimal? total_revenue { get; set; }
|
|
|
|
|
|
}
|
|
|
|
public class revenue_estimate_education_fee_detail1
|
|
{
|
|
public string curriculum { get; set; }
|
|
public List<revenue_estimate_education_fee_detail2> data_2 { get; set; }
|
|
|
|
}
|
|
public class revenue_estimate_education_fee_detail2
|
|
{
|
|
public string year_class { get; set; }
|
|
public string code { get; set; }
|
|
public decimal? credits_1 { get; set; }
|
|
public decimal? credits_2 { get; set; }
|
|
public decimal? total_credits { get; set; }
|
|
public decimal? register_credits { get; set; }
|
|
public string major { get; set; }
|
|
public decimal? students { get; set; }
|
|
public decimal? education_fee { get; set; }
|
|
public decimal? total_education_fee { get; set; }
|
|
public decimal? depreciation { get; set; }
|
|
public decimal? balance { get; set; }
|
|
public decimal? allocation { get; set; }
|
|
public decimal? total_allocation_amount { get; set; }
|
|
public List<revenue_estimate_education_fee_detail3> data_3 { get; set; }
|
|
|
|
|
|
}
|
|
public class revenue_estimate_education_fee_detail3
|
|
{
|
|
public string topic_code { get; set; }
|
|
public string topic { get; set; }
|
|
public decimal? credits_1 { get; set; }
|
|
public decimal? credits_2 { get; set; }
|
|
public decimal? total_credits { get; set; }
|
|
public decimal? register_credits { get; set; }
|
|
public string major { get; set; }
|
|
public decimal? students { get; set; }
|
|
public decimal? education_fee { get; set; }
|
|
public decimal? total_education_fee { get; set; }
|
|
public decimal? depreciation { get; set; }
|
|
public decimal? balance { get; set; }
|
|
public decimal? allocation { get; set; }
|
|
public decimal? total_allocation_amount { get; set; }
|
|
}
|
|
} |