48 lines
1.5 KiB
C#
48 lines
1.5 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class study_material
|
|
{
|
|
public string budget_year { get; set; }
|
|
public string product { get; set; }
|
|
public string faculty { get; set; }
|
|
public List<study_material_detail1> data1 { get; set; }
|
|
//public string text { get; set; }
|
|
|
|
}
|
|
|
|
public class study_material_detail1
|
|
{
|
|
public string academic_semester { get; set; }
|
|
public string academic_year { get; set; }
|
|
public string year_class { get; set; }
|
|
public string code { get; set; }
|
|
public List<study_material_detail2> data2 { get; set; }
|
|
|
|
}
|
|
public class study_material_detail2
|
|
{
|
|
public string year_class { get; set; }
|
|
public string code { get; set; }
|
|
|
|
public List<study_material_detail3> data3 { get; set; }
|
|
|
|
}
|
|
public class study_material_detail3
|
|
{
|
|
public string academic_semester { get; set; }
|
|
public string student { get; set; }
|
|
// public string code { get; set; }
|
|
// public string major { get; set; }
|
|
public decimal? salaya { get; set; }
|
|
public decimal? bophitphimuk { get; set; }
|
|
public decimal? pohchang { get; set; }
|
|
public decimal? klai_kangwon { get; set; }
|
|
public decimal? sum_science { get; set; }
|
|
public decimal? sum_social { get; set; }
|
|
public decimal? cost_science { get; set; }
|
|
public decimal? cost_social { get; set; }
|
|
|
|
}
|
|
} |