add reports

This commit is contained in:
kamonwan taengsuk
2022-11-09 14:30:14 +07:00
parent 5f7eaefaa5
commit c8b82d1508
11 changed files with 936 additions and 0 deletions

View 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; }
}
}