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,29 @@
using System.Collections.Generic;
namespace rmutr_report.Models.Hrrecruit
{
public class person_recruiting_selection
{
public string recruit_time { get; set; }
public string year { get; set; }
public List<person_recruiting_selection_detail> data { get; set; }
}
public class person_recruiting_selection_detail
{
public string pertype {get; set;}
public string directive_number { get; set; }
public string qualification { get; set; }
public string agency_name_th { get; set; }
public string area { get; set; }
public string recruit_time { get; set; }
public int? applicant_quantity { get; set; }
public int? pass_quantity { get; set; }
public int? accountant_quantity { get; set; }
public string account_expiration_date { get; set; }
public string account_end_date { get; set; }
public string processing_time { get; set; }
public string recruit_number_time { get; set; }
public string packing_date { get; set; }
}
}