This commit is contained in:
kamonwan taengsuk
2023-01-27 15:05:49 +07:00
parent 4ef21984bb
commit 9253033d96
13 changed files with 1998 additions and 47 deletions

View File

@@ -0,0 +1,45 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class student_graduate_program_area
{
public string academic_year_name_th { get; set; }
public string data_date { get; set; }
public List<student_news_graduate_programs_detail> data { get; set; }
}
public class student_news_graduate_programs_detail
{
public string area_name_th { get; set; }
public decimal? ph_degree_science { get; set; }
public decimal? ph_degree_social { get; set; }
public decimal? ph_total { get; set; }
public decimal? ph_master_science { get; set; }
public decimal? ph_master_social { get; set; }
public decimal? ph_master_total { get; set; }
public decimal? master_science { get; set; }
public decimal? master_social { get; set; }
public decimal? master_total { get; set; }
public decimal? sum_degree_science { get; set; }
public decimal? sum_degree_social { get; set; }
public decimal? sum_degree { get; set; }
public decimal? sum_percentage_science { get; set; }
public decimal? sum_percentage_social { get; set; }
public decimal? total1 { get; set; }
public decimal? total2 { get; set; }
public decimal? total3 { get; set; }
public decimal? total4 { get; set; }
public decimal? total5 { get; set; }
public decimal? total6 { get; set; }
public decimal? total7 { get; set; }
public decimal? total8 { get; set; }
public decimal? total9 { get; set; }
public decimal? total10 { get; set; }
public decimal? total11 { get; set; }
public decimal? total12 { get; set; }
public decimal? total13 { get; set; }
public decimal? total14 { get; set; }
}
}