This commit is contained in:
kamonwan taengsuk
2022-11-07 17:43:51 +07:00
parent cea1bbbaac
commit eb9d120c11
10 changed files with 649 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
using System.Collections.Generic;
namespace rmutr_report.Models.Hrregister
{
public class hr_attend
{
public string year_name_th { get; set; }
public string budget_year_name_th { get; set; }
public string month_name_th { get; set; }
public List<hr_attend_detail> data { get; set; }
}
public class hr_attend_detail
{
public string display_name_th { get; set; }
public string agency_name_th { get; set; }
public string rate_number { get; set; }
public string directive_number { get; set; }
public string attend_date { get; set; }
public string retire_date { get; set; }
public string signing_date { get; set; }
public string attend_by { get; set; }
public string cause { get; set; }
}
}

View File

@@ -0,0 +1,12 @@
namespace rmutr_report.Models.Hrregister
{
public class hr_contract_history
{
public string display_name_th { get; set; }
public string agency_name_th { get; set; }
public string rate_number { get; set; }
public string timeline { get; set; }
public string directive_number { get; set; }
public string signing_date { get; set; }
}
}

View File

@@ -0,0 +1,22 @@
using System.Collections.Generic;
namespace rmutr_report.Models.Hrregister
{
public class hr_discipline
{
public string year_name_th { get; set; }
public List<hr_discipline_detail> data { get; set; }
}
public class hr_discipline_detail
{
public string display_name_th { get; set; }
public string agency_name_th { get; set; }
public string rate_number { get; set; }
public string directive_number { get; set; }
public string signing_date { get; set; }
public string punishment_date { get; set; }
public string punishment_type { get; set; }
}
}

View File

@@ -0,0 +1,19 @@
namespace rmutr_report.Models.Hrregister
{
public class hr_insignia
{
public string display_name_th { get; set; }
public string position_name { get; set; }
public string agency_name_th { get; set; }
public string area_name_th { get; set; }
public string year { get; set; }
public string insignia_class { get; set; }
public string book { get; set; }
public string when { get; set; }
public string insignia_date { get; set; }
public string insignia_return { get; set; }
public string insignia_return_date { get; set; }
public string note { get; set; }
}
}