add report

This commit is contained in:
kamonwan taengsuk
2023-01-23 21:59:21 +07:00
parent 4417115ce8
commit 4dfecc8a9b
9 changed files with 739 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class student_news_area
{
public string academic_year_name_th { get; set; }
public string curriculum_name_th { get; set; }
public List<student_news_area_detail> data { get; set; }
}
public class student_news_area_detail
{
public string area_name_th { get; set; }
public string faculty_academy_name_th { get; set; }
public decimal? bachelors_degree_science { get; set; }
public decimal? bachelors_degree_social { get; set; }
public decimal? bachelors_degree_total { 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; }
}
}