add report development

This commit is contained in:
kamonwan taengsuk
2022-11-11 17:35:09 +07:00
parent 2eba54fc4a
commit 92bbd42776
5 changed files with 345 additions and 0 deletions

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