add reports
This commit is contained in:
33
Models/Hrregister/hr_askfor_insignia.cs
Normal file
33
Models/Hrregister/hr_askfor_insignia.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.Hrregister
|
||||
{
|
||||
public class hr_askfor_insignia
|
||||
{
|
||||
public string year { get; set; }
|
||||
public string insignia_date { get; set; }
|
||||
public string note_insignia_date { get; set; }
|
||||
public List<hr_askfor_insignia_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class hr_askfor_insignia_detail
|
||||
{
|
||||
public string insignia_class { get; set; }
|
||||
public List<hr_askfor_insignia_data_detail> data_detail { get; set; }
|
||||
}
|
||||
|
||||
public class hr_askfor_insignia_data_detail
|
||||
{
|
||||
public string display_name_th { get; set; }
|
||||
public string id_card { get; set; }
|
||||
public string position_level { get; set; }
|
||||
public string insignia_start_date { get; set; }
|
||||
public decimal? salary { get; set; }
|
||||
public string position_current_past { get; set; }
|
||||
public string insignia_receive { get; set; }
|
||||
public string insignia_receive_date { get; set; }
|
||||
public string insignia_class_short_name { get; set; }
|
||||
public string note { get; set; }
|
||||
public string money { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -14,6 +14,7 @@ namespace rmutr_report.Models.Hrregister
|
||||
public string insignia_return { get; set; }
|
||||
public string insignia_return_date { get; set; }
|
||||
public string note { get; set; }
|
||||
public string academic_knowledge { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
20
Models/Hrregister/hr_summary_leave.cs
Normal file
20
Models/Hrregister/hr_summary_leave.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace rmutr_report.Models.Hrregister
|
||||
{
|
||||
public class hr_summary_leave
|
||||
{
|
||||
public string display_name_th { get; set; }
|
||||
public int? sick_leave_day { get; set; }
|
||||
public int? sick_leave_time { get; set; }
|
||||
public int? leave_day { get; set; }
|
||||
public int? leave_time { get; set; }
|
||||
public int? leave_rest { get; set; }
|
||||
public int? maternity_leave { get; set; }
|
||||
public int? help_maternity_leave { get; set; }
|
||||
public int? ordination_leave { get; set; }
|
||||
public int? military_recruiting_leave { get; set; }
|
||||
public int? government_service_leave { get; set; }
|
||||
public int? late { get; set; }
|
||||
public string study_leave { get; set; }
|
||||
public string academic_knowledge { get; set; }
|
||||
}
|
||||
}
|
||||
30
Models/Hrregister/hr_summary_leave_agency.cs
Normal file
30
Models/Hrregister/hr_summary_leave_agency.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.Hrregister
|
||||
{
|
||||
public class hr_summary_leave_agency
|
||||
{
|
||||
public string agency_name_th { get; set; }
|
||||
|
||||
public List<hr_summary_leave_agency_detail> data { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class hr_summary_leave_agency_detail
|
||||
{
|
||||
public string display_name_th { get; set; }
|
||||
public int? sick_leave_day { get; set; }
|
||||
public int? sick_leave_time { get; set; }
|
||||
public int? leave_day { get; set; }
|
||||
public int? leave_time { get; set; }
|
||||
public int? leave_rest { get; set; }
|
||||
public int? maternity_leave { get; set; }
|
||||
public int? help_maternity_leave { get; set; }
|
||||
public int? ordination_leave { get; set; }
|
||||
public int? military_recruiting_leave { get; set; }
|
||||
public int? government_service_leave { get; set; }
|
||||
public int? late { get; set; }
|
||||
public string study_leave { get; set; }
|
||||
public string note { get; set; }
|
||||
}
|
||||
}
|
||||
17
Models/Hrregister/hr_summary_study_leave.cs
Normal file
17
Models/Hrregister/hr_summary_study_leave.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace rmutr_report.Models.Hrregister
|
||||
{
|
||||
public class hr_summary_study_leave
|
||||
{
|
||||
public string display_name_th { get; set; }
|
||||
public string study_leave_date { get; set; }
|
||||
public string study_leave_command{ get; set; }
|
||||
public string expand_study_leave_date { get; set; }
|
||||
public string expand_study_leave_command { get; set; }
|
||||
public string back_study_leave { get; set; }
|
||||
public string back_study_leave_command { get; set; }
|
||||
public string academic_knowledge { get; set; }
|
||||
public string academic_knowledge_command { get; set; }
|
||||
public string back_academic_knowledge { get; set; }
|
||||
public string back_academic_knowledge_command { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user