add report recruit

This commit is contained in:
kamonwan taengsuk
2022-11-10 13:13:30 +07:00
parent 4e7c486817
commit 2eba54fc4a
16 changed files with 1723 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
namespace rmutr_report.Models.Hrrecruit
{
public class quantity_position_assistant_professor
{
public string display_name_th { get; set; }
public string position_name { get; set; }
public string major_name_th { get; set; }
public string agency_name_th { get; set; }
public string appointment_date { get; set; }
public string signing_date { get; set; }
public string major_appointed { get; set; }
public string submajor_appointed { get; set; }
public string period { get; set; }
public string document { get; set; }
public string research { get; set; }
public string treatise { get; set; }
public string book { get; set; }
public string other_type_work { get; set; }
public string academic_articles { get; set; }
public string note { get; set; }
}
public class quantity_position_associate_professor
{
public string display_name_th { get; set; }
public string position_name { get; set; }
public string major_name_th { get; set; }
public string agency_name_th { get; set; }
public string appointment_date { get; set; }
public string signing_date { get; set; }
public string major_appointed { get; set; }
public string submajor_appointed { get; set; }
public string period { get; set; }
public string document { get; set; }
public string research { get; set; }
public string treatise { get; set; }
public string book { get; set; }
public string other_type_work { get; set; }
public string note { get; set; }
}
public class quantity_position_professor
{
public string display_name_th { get; set; }
public string position_name { get; set; }
public string major_name_th { get; set; }
public string agency_name_th { get; set; }
public string appointment_date { get; set; }
public string signing_date { get; set; }
public string major_appointed { get; set; }
public string submajor_appointed { get; set; }
public string period { get; set; }
public string document { get; set; }
public string research { get; set; }
public string treatise { get; set; }
public string book { get; set; }
public string other_type_work { get; set; }
public string note { get; set; }
}
}