add reports
This commit is contained in:
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user