46 lines
1.5 KiB
C#
46 lines
1.5 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models.RoThree
|
|
{
|
|
public class revenue_estimate_register_credits
|
|
{
|
|
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 decimal? total_income { get; set; }
|
|
|
|
public List<revenue_estimate_register_credit> data { get; set; }
|
|
public List<major_data> majors { get; set; }
|
|
}
|
|
|
|
public class revenue_estimate_register_credit
|
|
{
|
|
public int? topic_type { get; set; }
|
|
public string education_level { get; set; }
|
|
public string year_class { get; set; }
|
|
public string code { get; set; }
|
|
public string topic_code { get; set; }
|
|
public string topic { get; set; }
|
|
public decimal? total_credits { get; set; }
|
|
public decimal? lecture_credits { get; set; }
|
|
public decimal? practical_credits { get; set; }
|
|
public decimal? total_lecture_credits { get; set; }
|
|
public decimal? total_practical_credits { get; set; }
|
|
public decimal? total_register_amount { get; set; }
|
|
public List<major> majors { get; set; }
|
|
}
|
|
|
|
public class major_data
|
|
{
|
|
public string major_name { get; set; }
|
|
}
|
|
|
|
public class major
|
|
{
|
|
public string major_name { get; set; }
|
|
public decimal? credits { get; set; }
|
|
}
|
|
} |