51 lines
2.2 KiB
C#
51 lines
2.2 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models.HrDevelopment
|
|
{
|
|
public class summary_academic_position_leave
|
|
{
|
|
public string faculty_name { get; set; }
|
|
public string budget_year1 { get; set; }
|
|
public string budget_year2 { get; set; }
|
|
public string budget_year3 { get; set; }
|
|
public string budget_year4 { get; set; }
|
|
public string budget_year5 { get; set; }
|
|
public string budget_year6 { get; set; }
|
|
public string budget_year7 { get; set; }
|
|
public string budget_year8 { get; set; }
|
|
public string budget_year9 { get; set; }
|
|
public string budget_year10 { get; set; }
|
|
public string budget_year11 { get; set; }
|
|
public decimal? total_1 { get; set; }
|
|
public decimal? total_2 { get; set; }
|
|
public decimal? total_3 { get; set; }
|
|
public decimal? total_4 { get; set; }
|
|
public decimal? total_5 { get; set; }
|
|
public decimal? total_6 { get; set; }
|
|
public decimal? total_7 { get; set; }
|
|
public decimal? total_8 { get; set; }
|
|
public decimal? total_9 { get; set; }
|
|
public decimal? total_10 { get; set; }
|
|
public decimal? total_11 { get; set; }
|
|
public List<summary_academic_position_leave_detail> data { get; set; }
|
|
}
|
|
public class summary_academic_position_leave_detail{
|
|
public string major_name_th { get; set; }
|
|
public decimal? quantity_teacher_major { get; set; }
|
|
public decimal? quantity_teacher_increase { get; set; }
|
|
public string research { get; set; }
|
|
public string treatise { get; set; }
|
|
public string increase_academic_knowledge { get; set; }
|
|
public decimal? budget_year1 { get; set; }
|
|
public decimal? budget_year2 { get; set; }
|
|
public decimal? budget_year3 { get; set; }
|
|
public decimal? budget_year4 { get; set; }
|
|
public decimal? budget_year5 { get; set; }
|
|
public decimal? budget_year6 { get; set; }
|
|
public decimal? budget_year7 { get; set; }
|
|
public decimal? budget_year8 { get; set; }
|
|
public decimal? budget_year9 { get; set; }
|
|
public decimal? budget_year10 { get; set; }
|
|
public decimal? budget_year11 { get; set; }
|
|
}
|
|
} |