add report
This commit is contained in:
35
Models/budget/student_news_year.cs
Normal file
35
Models/budget/student_news_year.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class student_news_year
|
||||
{
|
||||
public string curriculum_name_th { get; set; }
|
||||
public string academic_year_range { get; set; }
|
||||
public string academic_year_name_th1 { get; set; }
|
||||
public string academic_year_name_th2 { get; set; }
|
||||
public List<student_news_year_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class student_news_year_detail
|
||||
{
|
||||
public string faculty_academy_name_th { get; set; }
|
||||
|
||||
public decimal? bachelors_degree_science1 { get; set; }
|
||||
public decimal? bachelors_degree_social1 { get; set; }
|
||||
public decimal? bachelors_degree_total1 { get; set; }
|
||||
public decimal? bachelors_degree_science2 { get; set; }
|
||||
public decimal? bachelors_degree_social2 { get; set; }
|
||||
public decimal? bachelors_degree_total2 { 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user