add reports

This commit is contained in:
kamonwan taengsuk
2022-11-15 13:35:24 +07:00
parent 8a5101cfa9
commit 45037a9a80
9 changed files with 720 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
using System.Collections.Generic;
namespace rmutr_report.Models.HrDevelopment
{
public class academic_position_leave
{
public string year { get; set; }
public List<academic_position_leave_detail> data { get; set; }
}
public class academic_position_leave_detail
{
public string display_name_th { get; set; }
public string position_name { get; set; }
public string faculty_name { get; set; }
public string research { get; set; }
public string treatise { get; set; }
public string increase_academic_knowledge { get; set; }
public string title { get; set; }
public string location { get; set; }
public string period { get; set; }
public string expenses { get; set; }
public string directive_go { get; set; }
public string directive_back { get; set; }
public string return_date { get; set; }
public string contract_number { get; set; }
public string note { get; set; }
}
}

View File

@@ -0,0 +1,21 @@
using System.Collections.Generic;
namespace rmutr_report.Models.HrDevelopment
{
public class company_database
{
public string faculty_name { get; set; }
public List<company_database_detail> data { get; set; }
}
public class company_database_detail
{
public string company_name { get; set; }
public string address { get; set; }
public string company_type { get; set; }
public string mou { get; set; }
public string phone_no { get; set; }
public string note { get; set; }
}
}

View File

@@ -0,0 +1,14 @@
namespace rmutr_report.Models.HrDevelopment
{
public class progress_report
{
public string display_name_th { get; set; }
public string faculty_name { get; set; }
public string research { get; set; }
public string collection_academic_text { get; set; }
public string start_end_date1 { get; set; }
public string start_end_date2 { get; set; }
public string start_end_date3 { get; set; }
public string note { get; set; }
}
}

View File

@@ -0,0 +1,51 @@
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; }
}
}