add report development
This commit is contained in:
20
Models/HrDevelopment/passer_join_project.cs
Normal file
20
Models/HrDevelopment/passer_join_project.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.HrDevelopment
|
||||
{
|
||||
public class passer_join_project
|
||||
{
|
||||
public string header_name { get; set; }
|
||||
public int? total_1 { get; set; }
|
||||
public int? total_2 { get; set; }
|
||||
public List<passer_join_project_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class passer_join_project_detail
|
||||
{
|
||||
public string agency_name_th { get; set; }
|
||||
public int? quantity_person { get; set; }
|
||||
public int? quantity_trained { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
29
Models/HrDevelopment/passer_join_project_agency.cs
Normal file
29
Models/HrDevelopment/passer_join_project_agency.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.HrDevelopment
|
||||
{
|
||||
public class passer_join_project_agency
|
||||
{
|
||||
public string agency_name_th { get; set; }
|
||||
public List<passer_join_project_agency_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class passer_join_project_agency_detail
|
||||
{
|
||||
public string pertype { get; set; }
|
||||
public List<passer_join_project_agency_data_detail> data_detail { get; set; }
|
||||
}
|
||||
|
||||
public class passer_join_project_agency_data_detail
|
||||
{
|
||||
public string display_name_th { get; set; }
|
||||
public int? quantity_project { get; set; }
|
||||
public string project_name { get; set; }
|
||||
public string course_organizer { get; set; }
|
||||
public string project_date { get; set; }
|
||||
public string project_time { get; set; }
|
||||
public string location { get; set; }
|
||||
public decimal? registration_fee { get; set; }
|
||||
public string complete_date { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user