53 lines
2.4 KiB
C#
53 lines
2.4 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class student_admission_plan
|
|
{
|
|
public int? student_type_code { get; set; } //1นักศึกษารับใหม่ 2นักศึกษาทั้งหมด 3นักศึกษาสำเร็จ
|
|
public string student_type_name { get; set; }
|
|
public string academic_year_from { get; set; }
|
|
public string academic_year_to{ get; set; }
|
|
public string faculty_name_th { get; set; }
|
|
public string level { get; set; }
|
|
public string course_name_th { get; set; }
|
|
public string major_name_th { get; set; }
|
|
public string budget_project_name_th { get; set; }
|
|
public string agency_name_th { get; set; }
|
|
public string budget_location_name_th { get; set; }
|
|
//
|
|
public string year_1 { get; set; }
|
|
public string year_2 { get; set; }
|
|
public string year_3 { get; set; }
|
|
public string year_4 { get; set; }
|
|
public string year_5 { get; set; }
|
|
public string year_6 { get; set; }
|
|
public string text { get; set; }
|
|
|
|
public List<student_admission_plan_detail> data { get; set; }
|
|
}
|
|
|
|
public class student_admission_plan_detail
|
|
{
|
|
public int? topic_type { get; set; }
|
|
public string topic { get; set; }
|
|
public decimal? sector_normal_year_1 { get; set; }
|
|
public decimal? sector_normal_year_2 { get; set; }
|
|
public decimal? sector_normal_year_3 { get; set; }
|
|
public decimal? sector_normal_year_4 { get; set; }
|
|
public decimal? sector_normal_year_5 { get; set; }
|
|
public decimal? sector_normal_year_6 { get; set; }
|
|
public decimal? sector_associate_year_1 { get; set; }
|
|
public decimal? sector_associate_year_2 { get; set; }
|
|
public decimal? sector_associate_year_3 { get; set; }
|
|
public decimal? sector_associate_year_4 { get; set; }
|
|
public decimal? sector_associate_year_5 { get; set; }
|
|
public decimal? sector_associate_year_6 { get; set; }
|
|
public decimal? total_year_1 { get; set; }
|
|
public decimal? total_year_2 { get; set; }
|
|
public decimal? total_year_3 { get; set; }
|
|
public decimal? total_year_4 { get; set; }
|
|
public decimal? total_year_5 { get; set; }
|
|
public decimal? total_year_6 { get; set; }
|
|
}
|
|
} |