85 lines
3.2 KiB
C#
85 lines
3.2 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class student_totalcampus
|
|
{
|
|
public string academic_year_name_th { get; set; }
|
|
public string academic_semester_name_th { get; set; }
|
|
public List<student_total_campus_data> header_data { get; set; }
|
|
public string admit_year1 { get; set; }
|
|
public string admit_year2 { get; set; }
|
|
public string admit_year3 { get; set; }
|
|
public string admit_year4 { get; set; }
|
|
public string admit_year5 { get; set; }
|
|
//public int? filter { get; set; }
|
|
}
|
|
|
|
public class student_total_campus_data
|
|
{
|
|
public decimal? filter { get; set; }
|
|
public string header_name { get; set; }
|
|
public string male1 { get; set; }
|
|
public string female1 { get; set; }
|
|
public string total1 { get; set; }
|
|
public string room1 { get; set; }
|
|
public string male2 { get; set; }
|
|
public string female2 { get; set; }
|
|
public string total2 { get; set; }
|
|
public string room2 { get; set; }
|
|
public string male3 { get; set; }
|
|
public string female3 { get; set; }
|
|
public string total3{ get; set; }
|
|
public string room3 { get; set; }
|
|
public string male4 { get; set; }
|
|
public string female4 { get; set; }
|
|
public string total4 { get; set; }
|
|
public string room4 { get; set; }
|
|
public string male5 { get; set; }
|
|
public string female5 { get; set; }
|
|
public string total5 { get; set; }
|
|
public string room5 { get; set; }
|
|
public string male6 { get; set; }
|
|
public string female6 { get; set; }
|
|
public string total6 { get; set; }
|
|
public string room6 { get; set; }
|
|
public string male7 { get; set; }
|
|
public string female7 { get; set; }
|
|
public string total7 { get; set; }
|
|
public string room7 { get; set; }
|
|
public List<detail> data { get; set; }
|
|
}
|
|
|
|
public class detail
|
|
{
|
|
public string name { get; set; }
|
|
public string male1 { get; set; }
|
|
public string female1 { get; set; }
|
|
public string total1 { get; set; }
|
|
public string room1 { get; set; }
|
|
public string male2 { get; set; }
|
|
public string female2 { get; set; }
|
|
public string total2 { get; set; }
|
|
public string room2 { get; set; }
|
|
public string male3 { get; set; }
|
|
public string female3 { get; set; }
|
|
public string total3{ get; set; }
|
|
public string room3 { get; set; }
|
|
public string male4 { get; set; }
|
|
public string female4 { get; set; }
|
|
public string total4 { get; set; }
|
|
public string room4 { get; set; }
|
|
public string male5 { get; set; }
|
|
public string female5 { get; set; }
|
|
public string total5 { get; set; }
|
|
public string room5 { get; set; }
|
|
public string male6 { get; set; }
|
|
public string female6 { get; set; }
|
|
public string total6 { get; set; }
|
|
public string room6 { get; set; }
|
|
public string male7 { get; set; }
|
|
public string female7 { get; set; }
|
|
public string total7 { get; set; }
|
|
public string room7 { get; set; }
|
|
}
|
|
} |